I have been trying to convert the following java code to B4A code. The reason is that it shows all phone numbers of a contact. For instance, instead of just John, (number), it shows John, Home (number); John, Mobile (number); John, work (number):
Thank for any help
B4X:
Intent intent = new Intent(Intent.ACTION_PICK, Phone.CONTENT_URI);
startActivityForResult(intent, PICK_CONTACT);
return false;
Thank for any help