当我试图通过 SimpleCursorAdapter 将数据从数据库放入 ListView 时,ListView 的行显示但它们是空的。
像:
[ _ __ _ __ _ ____ ]
[ _ __ _ __ _ ____ ]
[ _ __ _ __ _ ____ ]
代替:
[文本]
[文本]
[文本]
我的代码:
db = provider.getReadableDatabase();
String[] columns = {"_id", "Title"};
Cursor cursor = db.query(NotificationsProvider.TABLE_NAME, columns, null, null, null, null, null);
Log.d(TAG, "COUNT: "+cursor.getCount());
String[] clm = {"Title"};
int[] to = {android.R.id.list};
cursorAdapter = new SimpleCursorAdapter(this,
android.R.layout.simple_list_item_1,
cursor, clm, to, 0);
setListAdapter(cursorAdapter);
谢谢!