Android Question Contact picker

b4auser1

Well-Known Member
Licensed User
Longtime User
How to implement this code using B4A ?
B4X:
public void doLaunchContactPicker(View view) {
Intent contactPickerIntent = new Intent(Intent.ACTION_PICK,
Contacts.CONTENT_URI);
startActivityForResult(contactPickerIntent, CONTACT_PICKER_RESULT);
}
 
Top