I am using this code below to pick a contact number , but some contacts have more than one number, how can I select one of the contact numbers?
Cselect.setOnClickListener(new View.OnClickListener() {
public void onClick(View view) {
Intent intent = new Intent(Intent.ACTION_PICK, ContactsContract.Contacts.CONTENT_URI);
startActivityForResult(intent, 0);
}
});