항목 목록을 표시하는 ListView가 있습니다. 항목을 클릭하면 해당 항목이 데이터베이스 테이블에 스트라이크 된 것으로 표시됩니다. 그런 다음 SimpleCursorAdapter, setViewBinder, setViewValue를 사용하여 목록을 업데이트합니다.Android - ListView 항목에 변경된 사항은 첫 번째 항목의 영향을받습니다.
스트라이크 된 열이 해당 항목에 설정되어 있는지 확인한 다음 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);
이하?
찾을 최고의 explaination가 필요 이유를 아는 것. 뷰가 ListView에서 재사용되었다고 할 때, 어떻게됩니까? 만일 당신이 정성 들일 수 없다면 나는 괜찮아. 나는 여기에서 그것을 google 할 것이다. 고마워. – mystified
더 알고 싶다면 다행입니다. :) 제 대답에 몇 가지 설명을 추가했습니다. – Leszek