C Cor Active Member Licensed User Longtime User Jan 21, 2011 #1 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
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
Erel B4X founder Staff member Licensed User Longtime User Jan 21, 2011 #2 The Contacts object is read only. You can probably open the internal contacts selection application but I don't think that it will be too useful. Upvote 0
The Contacts object is read only. You can probably open the internal contacts selection application but I don't think that it will be too useful.
S susu Well-Known Member Licensed User Longtime User Jan 21, 2011 #3 Erel said: You can probably open the internal contacts selection application Click to expand... Can you show me, please? Upvote 0
Erel said: You can probably open the internal contacts selection application Click to expand... Can you show me, please?
Erel B4X founder Staff member Licensed User Longtime User Jan 23, 2011 #4 This code shows the standard Contacts application (add a reference to Phone library): B4X: Dim i As Intent i.Initialize(i.ACTION_VIEW, "") i.SetType("vnd.android.cursor.dir/contact") StartActivity(i) Upvote 0
This code shows the standard Contacts application (add a reference to Phone library): B4X: Dim i As Intent i.Initialize(i.ACTION_VIEW, "") i.SetType("vnd.android.cursor.dir/contact") StartActivity(i)
S susu Well-Known Member Licensed User Longtime User Jan 23, 2011 #5 Thank you Erel. Can I get contact that user selected? Upvote 0
P Pops Member Licensed User Longtime User Nov 27, 2011 #7 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
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)
Erel B4X founder Staff member Licensed User Longtime User Nov 28, 2011 #8 Please start a new thread for this question. Upvote 0