Here is the code i use to open contacts picker:
public void doLaunchContactPicker(View view) {
Intent contactPickerIntent = new Intent(Intent.ACTION_PICK,
Contacts.CONTENT_URI);
startActivityForResult(contactPickerIntent, CONTACT_PICKER_RESULT);
}
How can I open this with only names in contacts list when it opens from intent? Is their flags to add during intent to obtain this display effect when contacts picker starts?
much appreciated. ??
There is currently no way to do this with the stock intent and contact picker system