2012-02-26 43 views
1

我想從數據庫中獲取信息到listadabter。 這裏是我獲取信息的佈局代碼:爲什麼我的ListAdapter for android不工作?

Cursor c = mnDbHelper.fetchAllNotes(); 
    startManagingCursor(c); 
    String[] columns = new String[] {EquationsDbAdapter.KEY_VALUE}; 
    int to[] = new int[] {android.R.id.text1}; 
    SimpleCursorAdapter adapter = new SimpleCursorAdapter(this,android.R.layout.simple_list_item_1 ,c , columns , to); 
    setListAdapter(adapter); 

我的錯誤是由logcat中給出:java.lang.IllegalArgumentException: column '_id' does not exist 我已經看到了一些其他問題和教程,這些都不似乎解決我的問題。我的數據庫中甚至沒有列_id。

回答