schimanski Well-Known Member Licensed User Longtime User Jun 9, 2014 #1 Which is the intent to open one contact by the name or the ID? I only found the intent to open the hole contacts. Thanks for help...
Which is the intent to open one contact by the name or the ID? I only found the intent to open the hole contacts. Thanks for help...
Erel B4X founder Staff member Licensed User Longtime User Jun 10, 2014 #2 B4X: Sub Activity_Click Dim i As Intent i.Initialize(i.ACTION_VIEW, "content://com.android.contacts/contacts/1000") StartActivity(i) End Sub Upvote 0
B4X: Sub Activity_Click Dim i As Intent i.Initialize(i.ACTION_VIEW, "content://com.android.contacts/contacts/1000") StartActivity(i) End Sub
schimanski Well-Known Member Licensed User Longtime User Jun 10, 2014 #3 Thank you very much! Upvote 0