我有一個android.R.layout.simple_list_item_multiple_choice複選框,想要啓動其中的一些。 我該怎麼做? 我有以下代碼:Android:如何設置列表項檢查?
private void fillList() {
Cursor NotesCursor = mDbHelper.fetchAllNotes();
startManagingCursor(NotesCursor);
String[] from = new String[] { NotesDbAdapter.KEY_TITLE, NotesDbAdapter.KEY_BODY, NotesDbAdapter.KEY_CHECKED };
int[] to = new int[] {
android.R.id.text1,
android.R.id.text2,
//How set checked or not checked?
};
SimpleCursorAdapter notes = new SimpleCursorAdapter(this, android.R.layout.simple_list_item_multiple_choice, NotesCursor,
from, to);
setListAdapter(notes);
}
你見過這樣的:http://developer.android.com/reference /android/widget/CheckBox.html 不幫你嗎? – gnclmorais 2011-01-31 15:52:44