add contact

Cor

Active Member
Licensed User
Longtime User
is it possible to add,change contact with code

then I can use google maps to go to location (navigate)

because you can add a contact person as begin and end location
 

susu

Well-Known Member
Licensed User
Longtime User
Thank you Erel.
Can I get contact that user selected?
 
Upvote 0

Pops

Member
Licensed User
Longtime User
Can I get a contact that the user selected from this?

Dim i As Intent
i.Initialize(i.ACTION_PICK, "")
i.SetType("vnd.android.cursor.dir/contact")
StartActivity(i)
 
Upvote 0
Top