我有一个通过 listview 类型的东西显示的数据库,我将如何添加 OnClickListener?
这是代码:
public void DisplayRecord(Cursor c) {
Cursor c1 = DBAdapter.getAllRecords();
startManagingCursor(c1);
String[] from = new String[] { DBAdapter.KEY_ITEM };
int[] to = new int[] { R.id.text1 };
SimpleCursorAdapter notes = new SimpleCursorAdapter(this, R.layout.row,
c1, from, to);
setListAdapter(notes);
}
或者甚至有可能吗?
我将如何按字母顺序对这个列表进行排序?