我從數據庫中檢索信息,這些信息都存在指針內。現在我需要去指針中的每個項目來檢索信息然後顯示在頁面上。
Cursor c = mDbHelper.fetchSpot(15);
startManagingCursor(c);
double lat = Double.parseDouble(c.getString(c.getColumnIndexOrThrow(ParkingSpotDBAdapter.KEY_LAT)));
double lng = Double.parseDouble(c.getString(c.getColumnIndexOrThrow(ParkingSpotDBAdapter.KEY_LNG)));
String name = c.getString(c.getColumnIndexOrThrow(ParkingSpotDBAdapter.KEY_ADDRESS));
我用fecthAllSpots()方法可以在指針中返回很多項目,如何在指針中的項目裡檢索信息呢?
for (int i = 0; c.moveToPosition(i); i++)
{
//...
}