Ich fand dieses gut aussehende Layout für eine Kontaktliste: https://github.com/thehung111/ContactListViewErhalten Sie alle Namen und andere Angaben als String-Liste auf Android
jedoch die Kontakte hartcodiert sind. Also Ich muss Telefonkontakte abholen und die Kontaktliste ausfüllen.
Hier ist, was ich versucht habe:
public class ExampleDataSource {
public static List<ContactItemInterface> getSampleContactList(){
List<ContactItemInterface> list = new ArrayList<ContactItemInterface>();
Uri uri = ContactsContract.CommonDataKinds.Phone.CONTENT_URI;
String[] projection = new String[] {ContactsContract.CommonDataKinds.Phone.DISPLAY_NAME,
ContactsContract.CommonDataKinds.Phone.NUMBER};
Cursor people = getContentResolver().query(uri, projection, null, null, null);
int indexName = people.getColumnIndex(ContactsContract.CommonDataKinds.Phone.DISPLAY_NAME);
int indexNumber = people.getColumnIndex(ContactsContract.CommonDataKinds.Phone.NUMBER);
people.moveToFirst();
do {
String name = people.getString(indexName);
String number = people.getString(indexNumber);
list.add(new ExampleContactItem(name , number));
} while (people.moveToNext());
/* Example inputs for contact list
list.add(new ExampleContactItem("Lizbeth" , "Lizbeth Crockett"));
list.add(new ExampleContactItem("Lizbeth" , "Lizbeth Crockett"));
list.add(new ExampleContactItem("Zachery" , "Zachery Loranger"));
list.add(new ExampleContactItem("Vada" , "Vada Winegar"));
list.add(new ExampleContactItem("Essie" , "Essie Pass"));
*/
return list;
}
}
Ich habe Fehler auf getContentResolver() und versuchte Klasse zu einer Anwendung usw. Kein Glück so weit zu verlängern.
Die Hauptfrage ist also, wie man eine Liste, die Namen und Telefonnummern als String-Liste auf Android enthalten.
Danke, aber das ist nicht das Problem hier. – user2882572