1gravity / Android-ContactPicker

A beautifully designed component to pick one or several contacts (including groups) from the Android contacts list
Apache License 2.0
66 stars 33 forks source link

EXTRA_PRESELECTED_CONTACTS NOT WORKING #40

Open C-Spydo opened 6 years ago

C-Spydo commented 6 years ago

I can't get the contact picker to retain contacts I have selected before. I've collected all the selected contacts id into a serializable arraylist like this:

private ArrayListpreSelectedContacts; preSelectedContacts=new ArrayList(); preSelectedContacts.add(cp.getString(cp.getColumnIndex(ContactsContract.CommonDataKinds.Phone.CONTACT_ID)));

What can I do?