所以,我正在观看此视频http://www.youtube.com/watch?v=N6YdwzAvwOA,而Romain Guy正在展示如何使用getView()
方法制作更高效的UI适配器代码。这是否也适用于CursorAdapters?我目前正在使用bindView()
和newView()
作为我的自定义游标适配器。我应该使用getView吗?
答案 0 :(得分:73)
CursorAdapter
有一个getView()
的实现,代理newView()
和bindView()
,以强制执行行回收模式。因此,如果您要覆盖CursorAdapter
和newView()
,则无需对bindView()
进行任何特殊操作以进行行回收。
答案 1 :(得分:19)
/**
* @see android.widget.ListAdapter#getView(int, View, ViewGroup)
*/
public View getView(int position, View convertView, ViewGroup parent) {
if (!mDataValid) {
throw new IllegalStateException("this should only be called when the cursor is valid");
}
if (!mCursor.moveToPosition(position)) {
throw new IllegalStateException("couldn't move cursor to position " + position);
}
View v;
if (convertView == null) {
v = newView(mContext, mCursor, parent);
} else {
v = convertView;
}
bindView(v, mContext, mCursor);
return v;
}
这个CursorAdapter源代码,显然是cursorAdapter的工作原理。
答案 2 :(得分:2)
CursorAdapter
实现与BaseAdapter
等常规适配器的子类别不同,您无需覆盖getView()
,getCount()
,getItemId()
,因为可以从光标本身检索该信息。
给定Cursor
,您只需要覆盖两个方法来创建CursorAdapter
子类:
bindView()
:给定一个视图,更新它以显示所提供游标中的数据。
newView()
:调用它来构造一个进入列表的新视图。
CursorAdapter
将负责回收视图(与常规getView()
上的Adapter
方法不同)。每次需要新行时,它不会调用newView()
。如果它已经有View
(不是null
),它将直接调用bindView()
,这样就会重新使用创建的视图。通过将每个视图的创建和填充分成这两种方法,CursorAdapter
实现了视图重用,而在常规适配器中,这两种方法都是在getView()
方法中完成的。