Prevent re-use of some views in ListView (custom cursor-adapter)
Is it possible to add one view created during newView(..) as a separate type, so that reuse of just that view is prevented during bindView(...) ? This is what my custom cursorAdapter looks like: @Override public void bindView(View vi, Context arg1, Cursor cursor) { priority.setText(cursor.getString(cursor.getColumnIndex(TodoTable.COLUMN_PRIORITY)));TextView timeElapsed = (TextView)vi.findViewById(R.id.todayTime); //time long id = cursor.getLong(cursor.getColumnIndex(TodoTable.COLUMN_ID)); if(ts.getRunning() == id){ ts.startTimer(vi, ts.getCurrentTaskStart(), id); }else{ long time = cursor