This is my first application in Android. I am trying to maintain a list of contacts (a subset of the phone contacts) in my own application. I was to an extent read the contacts from Android and try to manipulate with it. But the challenge I face is,
- Storing the contacts (persisting) in the application preferably through Preferences. (ListPreference not usable for this).
- I only need name, phone number and email from every contact and display it in a list view.
The equivalent iPhone version looks like this. But how to close achieve this in Android
Any tips on achieving the above is much appreciated.