我正在尝试使用 Cursor 和 Loader 从 SQliteDatabase 填充 ListView,但所有项目都显示完全无序
我的 CursorAdapter 类
@Override
public void bindView(View view, Context context, Cursor c) {
ItemHolder holder = null;
try{
holder = (ItemHolder) view.getTag();
} catch (Exception e){
e.printStackTrace();
}
if(holder != null){
System.out.println("b "+holder.position);
}
}
@Override
public View newView(Context context, Cursor c, ViewGroup parent) {
LayoutInflater inflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View nView = inflater.inflate(layoutID, parent, false);
ItemHolder holder = new ItemHolder();
System.out.println("a "+c.getPosition());
holder.position = c.getPosition();
nView.setTag(holder);
return nView;
}
单次完整滚动返回后的 Logcat 输出(a 是 newView() 中的位置,b 是 bindView() 中的位置)
a 0
b 0
a 1
b 1
a 2
b 2
b 0
代替
a 0
b 0
a 1
b 1
a 2
b 2
a 3
b 3
检查适配器中的光标返回正确的数据
c.moveToFirst();
for(int i = 0; i < c.getCount(); i++){
System.out.println(i+" "+c.getString(c.getColumnIndex(COL_NAME)));
c.moveToNext();
}
我使用最新的 anroid.support.v4 库