Reputation: 1
I want to pick a contact name from contact list and then want to store this contact name in my app in list view.
Upvotes: 0
Views: 1039
Reputation: 39638
see this SO Answer
Dont forget to add permission to your android manifest
<uses-permission android:name="android.permission.READ_CONTACTS"/>
For further details see Using the Contacts API and android's Contact manager example app
Upvotes: 1
Reputation: 24031
check following links:
How to call Android contacts list?
How to get contacts from native phonebook in android
How to obtain all details of a contact in Android
How to get the first name and last name from Android contacts?
How to import contacts from phonebook to our application
How to get all android contacts but without those which are on SIM
Upvotes: 0