我有一个显示项目列表的ListView。当我单击某个项目时,我将该项目标记为数据库表格中的标记。然后,我使用SimpleCursorAdapter,setViewBinder,setViewValue更新列表。
我检查是否为相应的项目设置了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);
我做错了什么?
答案 0 :(得分:5)
我认为这是因为在ListView中重用了视图。尝试在未查看视图时重置绘制标记:
if(Integer.parseInt(cursor.getString(3)) == 1){
textViewItem.setPaintFlags(textViewItem.getPaintFlags() | Paint.STRIKE_THRU_TEXT_FLAG);
} else {
//resed paint flags
textViewItem.setPaintFlags(textViewItem.getPaintFlags() & (~ Paint.STRIKE_THRU_TEXT_FLAG));
}
修改强> 我不确定我的解释是否是核心。当你在ListView上有10个项目时,只有5个可见,android创建(inflantes)只有5个视图。当您滚动列表时,将显示一个新项目,但是一个将消失,因此将有一个未使用的视图。 Android将获取未使用的视图,用新数据填充它并将其用于新出现的项目。我找到了更多信息here。
答案 1 :(得分:0)
你的列表中需要不同类型的行(两种类型,striked和non striked),这是我为自己找到的最好的解释