CursorIndexOutOfBoundsException problem:Index 4 requested, with a size of 4
I want to display for each maker an AlertDialog that has some description, for that, i'm using this code: protected boolean onTap(int index) { db = openHelper.getWritableDatabase(); String[] result_columns = new String[] {COL_DESCRI}; Cursor cur = db.query(true, TABLE_COORD, result_columns, null, null, null, null, null, null); cur.moveToPosition(index); String description = cur.getString(cur.getColumnIndexOrThrow("description")); AlertDialog.Builder dialog = new AlertDialog.Builder(Geo.this); dialog.setTitle("Infos."); dialog.setMessage(description); dialog.setPositiveButton("OK", new