Android SimpleCursorAdapter + ListView无效

时间:2011-05-05 00:35:19

标签: android sqlite listview cursor simplecursoradapter

您好我试图使用SimpleCursorAdapter将值绑定到列表适配器。游标从SQLLite数据库中传出。然而,无论光标中的结果如何(它总是至少有一行),列表视图显示空消息。我对android很新,并且对此感谢任何帮助。

我的代码如下:

在活动中:由onCreate()

调用
private void setupList() {
    if(sesionDao == null) {
        sesionDao = new SessionDAO(this);
    }
    Cursor cursor = sesionDao.retrieveAllSessions();
    startManagingCursor(cursor);

    String[] from = new String[]{Database.SES_SESSION_NAME};
    int[] to = new int[]{R.id.sessionNameRow};
    SimpleCursorAdapter sessionAdapter = new SimpleCursorAdapter(this, R.layout.session_list_row,cursor, from, to );

    setListAdapter(sessionAdapter);
}

检索光标

db = dbHelper.getReadableDatabase();

Cursor c = db.query(Database.SESSIONS_TABLE_NAME, new String[] {
    Database.ID_COLUMN, Database.SES_SESSION_NAME }, null,
                null, null, null,null);

session_list_row.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent"> <TextView android:text="" android:id="@+id/sessionNameRow" android:layout_width="wrap_content" android:layout_height="wrap_content"></TextView> </LinearLayout>

主要布局 <ListView android:id="@android:id/list" android:layout_height="fill_parent" android:layout_width="fill_parent"></ListView> <TextView android:id="@android:id/empty" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/no_sessions_msg" />

1 个答案:

答案 0 :(得分:2)

我想出了问题所在。我正在做一个愚蠢的错误,当方法结束时关闭连接,之后光标变得无效。