我在 SOF 中阅读了很多关于 CursorAdaptor - newView / getView / bindView 的帖子。
如果我为自动完成文本字段创建自定义适配器,我必须实现 newView() 和 bindView()。
但是有人说,实现 getView() 可以提高滚动时的速度。
所以问题是,
如果在 newView() 上,已经膨胀了一个视图。
public View newView(Context context, Cursor cursor, ViewGroup parent) {
final LayoutInflater inflater = LayoutInflater.from(context);
// =Single Line=
final TextView view = (TextView) inflater.inflate(android.R.layout.simple_list_item_1, parent, false);
String item = createItem(cursor);
view.setText(item);
return view;
}
所以在 getView() 上,我对它做同样的事情吗?