我有一個顯示項目列表的ListView。當我點擊某個項目時,我將該項目標記爲在我的數據庫表格中顯示。然後,我使用SimpleCursorAdapter,setViewBinder,setViewValue更新列表。Android - 對任何ListView項目所做的任何更改都會影響到第一個項目
我檢查striked列是否設置爲相應的項目,然後我更新TextView來觸發該項目。
的代碼如下
Cursor c = db.fetchAllNotes(id);
startManagingCursor(c);
String[] from = new String[] { DatabaseHandler.KEY_LIST };
int[] to = new int[] { R.id.text1 };
SimpleCursorAdapter notes =
new SimpleCursorAdapter(this, R.layout.task_row, c, from, to);
notes.setViewBinder(new SimpleCursorAdapter.ViewBinder() {
public boolean setViewValue(View view, Cursor cursor, int columnIndex) {
// TODO Auto-generated method stub
text = (TextView) view.findViewById (R.id.text1);
System.out.println("Item is "+ text.getText().toString());
System.out.println("Item from cursor is " + cursor.getString(2));
System.out.println("Striked value is " + Integer.parseInt(cursor.getString(3)));
if(Integer.parseInt(cursor.getString(3)) == 1)
text.setPaintFlags(textViewItem.getPaintFlags() | Paint.STRIKE_THRU_TEXT_FLAG);
return false;
}
});
setListAdapter(notes);
我在做什麼錯?
這似乎這樣的伎倆,但我會愛知道爲什麼。當你說視圖在ListView中被重用時,會發生什麼?如果你不能詳細說明,我會從這裏谷歌搜索。非常感謝。 – mystified 2012-07-24 16:24:52
我很高興你想知道更多:)我添加了一些解釋給我的答案。 – Leszek 2012-07-24 16:37:50