これは私のデータベースハンドラーコードです。
// Getting All detail
public List<Detail> getAllDetail() {
List<Detail> detailList = new ArrayList<Detail>();
// Select All Query
String selectQuery = "SELECT * FROM " + TABLE_DETAIL;
SQLiteDatabase db = this.getWritableDatabase();
Cursor cursor = db.rawQuery(selectQuery, null);
// looping through all rows and adding to list
if (cursor.moveToFirst()) {
do {
Detail detail = new Detail();
detail.setID(Integer.parseInt(cursor.getString(0)));
detail.setTitle(cursor.getString(1));
detail.setDetail(cursor.getString(2));
// Adding contact to list
detailList.add(detail);
} while (cursor.moveToNext());
}
レイアウトファイルがこのようなボタンのあるリストビューのように見えるアクティビティクラスでこれらの詳細を取得する必要があります。
ボタンにはデータベース行のIDを割り当てる必要があります。クリックすると、特定の行の詳細が完全に表示される別のアクティビティに移動する必要があります。
plsは私を助けます..事前に感謝します..