I want the user to select a contact to which my application would send a SMS. How do I ensure that when I start an activity with ACTION_PICK intent only those contacts with mobile phone numbers are displayed?
Currently, I'm starting the activity like this:
Intent intent = new Intent(Intent.ACTION_PICK, Phones.CONTENT_URI);