I need to select emails from contact… I find android have a build-in phone number picker as seen on image bellow.
img : http://i1108.photobucket.com/albums/h412/Tek_Yin/selectphone.jpg
in 1.5 & 1.6 I can use this :
Intent i = new Intent(Intent.ACTION_PICK, Contacts.Phones.CONTENT_URI);
the question is :
- can it show email instead of phone number?
- I need it to adapt on 2.0 or higher
- I read 2.0 or higher is using
ContactsContract, but how?
Thanks in advance.
just override @Override onActivityResult and create a cursor for email, when you get the results for picker, get only the email addreess.