Android-ContactPicker
Android-ContactPicker copied to clipboard
EXTRA_PRESELECTED_CONTACTS NOT WORKING
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 ArrayList<String>preSelectedContacts; preSelectedContacts=new ArrayList<String>(); preSelectedContacts.add(cp.getString(cp.getColumnIndex(ContactsContract.CommonDataKinds.Phone.CONTACT_ID)));
What can I do?