2012-05-23 70 views
0

我有兩個其他應用程序使用ListViewSimpleCursorAdapter。代碼幾乎完全相同。所以我決定在第三個應用程序中再次使用它。它不工作,並且找不到解決方案。使用ListView和SimpleCursorAdapter創建列表

問題是沒有什麼顯示在列表中。我使用一個按鈕將信息添加到數據庫中。我在光標Log.d("",storyCur.count()+"");上記錄了一個計數,以確保數據庫正在更新並且是。

相關的數據庫代碼:

public Cursor fetchAll(){ 
    return mDb.query(DATABASE_TABLE, new String[] {KEY_ROWID,KEY_DETAILS,KEY_TITLE}, 
    null, null, null, null, null); 
} 

休息的相關代碼:

ListView lv; 
DbAdapter db; 

public void onCreate(Bundle savedInstanceState) { 
... 
    lv = (ListView) findViewById(R.id.list); 
    db = new DbAdapter(this); 
.... 
} 

public void onResume(){ 
    super.onResume(); 
    db.open(); 
    fillData(); 
} 

private void fillData(){ 
    Cursor storyCur = db.fetchAll(); 
    startManagingCursor(storyCur); 

    String[] from = new String[]{DbAdapter.KEY_LOC}; 
    int[] to = new int[]{R.id.row1}; 

    SimpleCursorAdapter stories = 
     newSimpleCursorAdapter(this,R.layout.story_row,storyCur,from,to); 

    lv.setAdapter(stories); 

    storyCur.close(); 
} 

主要XML:

<Button 
    android:id="@+id/button1" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:text="Button" 
    android:onClick="onClick" /> 

    <ListView 
    android:id="@+id/list" 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" > 
    </ListView> 

</LinearLayout> 

story_row XML:

<?xml version="1.0" encoding="utf-8"?> 



<TextView xmlns:android="http://schemas.android.com/apk/res/android" 
    android:id="@+id/row1" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:padding="10dp" 
    android:background="#444444" /> 
+1

爲什麼在初始化適配器後立即關閉遊標?我相信你應該刪除對光標上的.close()的調用。 SimpleCursorAdapter將爲您管理,並需要打開光標 – dymmeh

+0

哇。我不知道我爲什麼那樣。我在其他2款應用中使用了它們,並且它們運行良好。雖然這解決了它。謝謝。如果你想要代表你可以發表一個答案。再次感謝。 – Ryan

+0

發佈爲答案。我很肯定你不需要調用startManagingCursor(storyCur),但是這可能只是在SimpleCursorAdapter的更新版本 – dymmeh

回答

1

您應該移除對光標上.close()的調用。 SimpleCursorAdapter需要將光標打開才能正常工作,並將爲您的光標調用close()。

相關問題