例如,當我向數據庫添加一行時,我運行ff。代碼,如何在數據庫更改時重新引導光標適配器?
Cursor crs = adapterToRefresh.getCursor();
crs.close();
crs = this.dbImmunization.queryAll();
this.startManagingCursor(crs);
crs.moveToFirst();
adapterToRefresh.changeCursor(crs);
adapterToRefresh.notifyDataSetChanged();
其中crs是遊標在遊標適配器內的檢索。
到目前爲止,這個實現給了我一個CursorIndexOutOfBoundsException的錯誤。
幫助任何人!
請發佈堆棧跟蹤。 – trojanfoe 2011-05-04 09:46:09