shailja
shailja

Reputation: 1

How to pick the contact name and store it in our application

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

Answers (2)

Mouna Cheikhna
Mouna Cheikhna

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

Related Questions