ListView
如果联系人有多个号码,我必须为同一个联系人创建多行。因此,具有 3 个号码的联系人将在 中显示为 3 个单独的行ListView
。为此,我创建了一个MatrixCursor
用于添加单独的行,然后将此光标添加到我的ListView
.
private static final String[] arr = { "_id", "name", "type_int", "value" };
final String[] projection = new String[] { Phone.NUMBER, Phone.TYPE, };
add_cursor = new MatrixCursor(arr);
String[] values = { "", "", "", "" };
Cursor cursor = argcontext.getContentResolver().query(ContactsContract.Contacts.CONTENT_URI, null, buffer == null ? null : buffer.toString(), args, ContactsContract.Contacts.DISPLAY_NAME + " ASC ");
if (cursor != null && cursor.moveToFirst()) {
int i = 0;
do {
String name = cursor.getString(cursor.getColumnIndex(ContactsContract.Contacts.DISPLAY_NAME));
contactId = cursor.getString(cursor.getColumnIndex(ContactsContract.Contacts._ID));
cursor.getCount());
Cursor phone = argcontext.getContentResolver().query(Phone.CONTENT_URI, projection, Data.CONTACT_ID + "=?", new String[] { contactId }, null);
if (phone != null && phone.moveToFirst()) {
do {
number = phone.getString(phone.getColumnIndex(Phone.NUMBER));
final int type = phone.getInt(phone.getColumnIndex(Phone.TYPE));
values[0] = String.valueOf(i);
values[1] = String.valueOf(name);
values[2] = String.valueOf(type);
values[3] = String.valueOf(number);
add_cursor.addRow(values);
i++;
} while (phone.moveToNext());
phone.close();
}
}
}
它运行良好,但我的问题是当后台数据发生变化时,我需要再次调用此代码,但首先我需要清除此游标值或删除其中的所有行,然后继续添加新行,我不不知道该怎么做。没有:
cursor.removeRow()
函数,所以如果联系人数据发生变化,我必须再次调用这个函数,如果我继续创建:
new MatrixCursor();
每一次requery
它都会为应用程序创建大量内存占用。这会导致应用程序崩溃,比如说如果有 3000 个联系人,那么这个游标需要大量内存,这会导致应用程序崩溃。有没有其他方法可以显示这种列表?