Easy ContactPicker

omidaghakhani1368

Well-Known Member
Licensed User
Longtime User
Hi special Erel :)
I can create Library for select contact from android contact easily.
You can get selected contact via user in only 4 line code.
example is attachment.
oh I cannot wite english well.

Add below Event for handle selected contact

Sub ContactSelected(Value As ContactItem)
Log(Value.Name)
Log(Value.PhoneNumber)
End Sub

AddPermission(android.permission.READ_CONTACTS)

Download here because still Erel not fix upload file :)
 
Last edited:

DavideV

Active Member
Licensed User
Longtime User
Hi special Erel :)
I can create Library for select contact from android contact easily.
You can get selected contact via user in only 4 line code.
example is attachment.
oh I cannot wite english well.

Add below Event for handle selected contact

Sub ContactSelected(Value As ContactItem)
Log(Value.Name)
Log(Value.PhoneNumber)
End Sub

AddPermission(android.permission.READ_CONTACTS)

Download here because still Erel not fix upload file :)

Hi, i like this library because it's simple to use. I implemented it in one of my apps and now i should get the 'email' field.
Since your library is based on contactutils class that already has the 'cuEmail' field, could you please add that field to the 'contactitem' type?
thank you in advance !

DavideV
 

JOTHA

Well-Known Member
Licensed User
Longtime User
Hi special Erel :)
I can create Library for select contact from android contact easily.
You can get selected contact via user in only 4 line code.
example is attachment.
oh I cannot wite english well.

Add below Event for handle selected contact

Sub ContactSelected(Value As ContactItem)
Log(Value.Name)
Log(Value.PhoneNumber)
End Sub

AddPermission(android.permission.READ_CONTACTS)

Download here because still Erel not fix upload file :)

I wanted to give it a try, but the link is broken (404) ...
 
Top