0

我正在尝试使用 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 库

4

1 回答 1

1

您需要在ORDER BYSQL 语句中添加一个子句,对查询结果进行排序。查看文档此示例以获取更多详细信息。

样本:

SELECT * FROM <table> ORDER BY <column>;

ps:如果您正在使用database.query(...),您可以在此处为排序列添加参数(请参阅orderBy):

query(String table, String[] columns, String selection, 
      String[] selectionArgs, String groupBy, String having, String orderBy) 

查看Android 文档

于 2013-08-17T15:29:55.553 回答