No, afraid not... Not to say you couldn't write your own contacts picker which did this and then catch a similar intent, however, for the contacts picker that comes default on android.
kris On Sun, Jan 1, 2012 at 10:43 PM, Eric <[email protected]> wrote: > Hi all, > > I'm using the following code to launch the Contacts Picker: > > Intent intent = new Intent(Intent.ACTION_PICK, > ContactsContract.Contacts.CONTENT_URI); > //another display style: > //intent.setType > (android.provider.ContactsContract.CommonDataKinds.Phone.CONTENT_TYPE); > startActivityForResult(intent, 1); > > It works, but I would like to add filtering such that some contacts > are not shown. My desired display criterion is: > > - Only show contacts that have Home phone, Work phone, Mobile phone or > Pager. > > Contacts that have only Work Fax, E-mail, etc etc should not be > shown. > > Is it possible to add such filtering? Thank you. > > Regards, > Eric > > -- > You received this message because you are subscribed to the Google > Groups "Android Developers" group. > To post to this group, send email to [email protected] > To unsubscribe from this group, send email to > [email protected] > For more options, visit this group at > http://groups.google.com/group/android-developers?hl=en -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

