Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to add the contact list to the "list preferences" in android so that the user can select the contact as a preference. But unfortunately I'm unable to find a way to do it. Can anyone help me out with it.

Note: I'm still a noob when it comes to android development, so i wud be a lot thankful if u can explain it in simple terms. :)

Thanks in advance.

share|improve this question

1 Answer

Do one thing get all contacts using Content resolver and stored in cursor. After that fetch all contact names using contentresolver.query() method and store all names in a Array of Strings.

Then create dynamic Listpreference using this code :

PreferenceScreen pf = getPreferenceManager().createPreferenceScreen(this);
dialogBasedPrefCat.setTitle("Category Title");
pf.addPreference(dialogBasedPrefCat);

enter code here

ListPreference lf = new ListPreference(this);
        lf.setKey("keyName"); //Refer to get the pref value
        lf.setEntries("Array of values");
        lf.setEntryValues("Array of item value"); // Here you can add Array of String
        lf.setDialogTitle("Dialog Title"); 
        lf.setTitle("Title");
        lf.setSummary("Summary");
        dialogBasedPrefCat.addPreference(lf); Adding under the category

        return pf;

i think it can help you.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.