使用SimpleCursorAdapter的空白ListView

时间:2014-01-02 06:56:55

标签: android sqlite listview simplecursoradapter

我在SO上看了很多类似的问题,但似乎没有解决我的问题。所以我试图让ListActivity使用SimpleCursorAdapter与SQLite交谈。我已经通过调试器运行代码,一切看起来都没问题,但我的listView是空的。数据库中肯定有东西,我已经注销了光标中至少有适当数量的列。

我是Android开发人员的新手,我很清楚我可能会遗漏一些非常明显的东西,但如果你能指出它会很棒。

以下是我的活动

public class ListItemsActivity extends ListActivity {

    private RevisionItemsDataSource datasource;

    private SimpleCursorAdapter itemAdapter;
    private Button addButton;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        datasource = new RevisionItemsDataSource(this);
        datasource.open();

        setContentView(R.layout.revision_list);

        Cursor cursor = datasource.fetchAll();
        String[] columns = new String[] {
            MySQLiteHelper.COLUMN_QUESTION,
            MySQLiteHelper.COLUMN_ANSWER
        };

        int[] to = new int[] {
            R.id.questionText,
            R.id.answerText
        };

        itemAdapter = new SimpleCursorAdapter(
            this, R.layout.revision_item_view,
            cursor, columns,
            to, 0);

        this.setListAdapter(itemAdapter);
    }
}

这是列表XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <ListView
        android:id="@android:id/list"
        android:layout_width="wrap_content"
        android:layout_height="0dip"
        android:layout_weight="1" />

    <Button
        android:id="@+id/addItemButton"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center_horizontal"
        android:text="Add" />
</LinearLayout>

用于单项格式化的XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <TextView
        android:id="@+id/questionText"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Large Text"
        android:textAppearance="?android:attr/textAppearanceLarge" />

    <TextView
        android:id="@+id/answerText"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="TextView" />
</LinearLayout>

最后是Datasource对象

public class RevisionItemsDataSource {

    private static final String DB_TAG = "DATABASE";

    // Database fields
    private SQLiteDatabase database;
    private MySQLiteHelper dbHelper;
    private String[] allColumns = {
        MySQLiteHelper.COLUMN_ID,
        MySQLiteHelper.COLUMN_QUESTION, 
        MySQLiteHelper.COLUMN_ANSWER
    };

    public RevisionItemsDataSource(Context context) {
        dbHelper = new MySQLiteHelper(context);
    }

    public RevisionItemsDataSource open() throws SQLException {
        database = dbHelper.getWritableDatabase();
        return this;
    }

    public Cursor fetchAll() {

        Cursor cursor = database.query(MySQLiteHelper.TABLE_ITEMS,
                allColumns, null, null, null, null, null);

        if(cursor != null) {
            cursor.moveToFirst();
        }

        return cursor;
    }
}

1 个答案:

答案 0 :(得分:1)

好的误报......你知道我说数据库中有东西,但没有。我重新创建了我的模拟器,因此用它来修改数据库。

我现在正在拍自己。