是否可以将在 期间创建的一个视图添加newView(..)
为单独的类型,以便在 期间防止仅重用该视图bindView(...)
?
这是我的自定义 cursorAdapter 的样子:
@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.getLong((cursor.getColumnIndex(TodoTable.COLUMN_TIME)));
timeElapsed.setText(ts.getTimeString(0, 0, time));
}
}
@Override
public View newView(Context context, Cursor cursor, ViewGroup arg2) {
LayoutInflater inflater = LayoutInflater.from(context);
View vi = inflater.inflate(R.layout.list_item, null);
bindView(vi, context, cursor);
return vi;
}
我尝试将它添加到不同的类型,使用getItemViewType
andgetViewTypeCount
但这只能处理位置而不是与列表视图的行关联的 ID。
我想防止在ts.getRunning() == id
滚动时在其他位置重用创建时的视图。我该怎么做这样的事情?