我有一个自定义的CursorAdapter。我已经重写了bindView方法
public void bindView(View view,Context context, Cursor cursor){
TextView title=(TextView) view.findViewById(R.id.row_title);
title.setText(cursor.getString(1));
TextView subTitle=(TextView) view.findViewById(R.id.row_subtitle);
subTitle.setText(cursor.getString(2));
}
我的问题是,在生成新列表项时,新列表项如何包含光标下一行的元素?是否自动调用了cursor.moveToNext()?