simplecursoradapter不工作

时间:2011-04-04 09:39:19

标签: android sqlite listview listadapter simplecursoradapter

我正在使用数据库,从中获取光标,然后使用simplecursoradapter填充listview。我似乎无法弄清楚为什么应用程序崩溃创建一个新的simplecursoradapter。我的光标包含在单个对象中。我通过这个类中的数据变量引用它。

String[] columns = new String[] {"item", "quantity", "days"};
int[] to = new int[] { R.id.nametext, R.id.quantitytext, R.id.dayslefttext};
SimpleCursorAdapter sCA = new SimpleCursorAdapter(this, R.layout.itemrow, data.listCursor, columns, to);
listView1.setAdapter(sCA);

simplecursoradapter对构造函数中传递给它的信息做了什么?格式错误的参数之一是什么?这是我用来查看每行的简单xml文件:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="wrap_content">
  <TextView 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:text="Loading Screen" 
    android:id="@+id/nametext"/>
  <TextView
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:text="Loading Screen" 
    android:id="@+id/quantitytext"/>
  <TextView 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:text="Loading Screen" 
    android:id="@+id/dayslefttext"/>
</LinearLayout>

以下是我加载游标的方法:

listCursor = myDataBase.query(ITEMS_TABLE, null, "location" +" = ?", new String[]{IN_SPECIAL_LIST}, null, null, "item");

我无法弄清问题是什么。我通过一些调试来运行它,当我创建新的simplecursoradapter时会出现问题。

1 个答案:

答案 0 :(得分:5)

myDataBase.query(ITEMS_TABLE, null, ...

此null是您的问题,这意味着查询将使用SELECT *但您的表中没有列_id,因此您应该使用

new String[] {"YOURID AS _id", "item", "quantity", "days"}

SimpleCursorAdapter需要_id列

YOURID可以是ROWID(ROWID为_id)或来自数据库的任何int或long ID