0
私の問題を説明しようとします。バーコードを読み込んで保存するためのZxingライブラリをベースにした小さなプロジェクトを作成しました。今度は、最初のリストビューを作成して、動作中のSQLiteデータベースの要素を含んでいます。 はここに今、私はActivityクラスでListViewコントロールを移入する方法がわからない、私のソースコードAndroid populate Sqlite DBのListView
DBAdapter
public boolean insertProduct(String barcode, int quantity)
{
ContentValues initialValues = new ContentValues();
initialValues.put(KEY_BARCODE, barcode);
initialValues.put(KEY_QUANTITY, quantity);
try {
db.insert(DATABASE_TABLE, null, initialValues);
return true;
}
catch(Exception ex){
return false;
}
}
public boolean deleteProduct(String barcode)
{
return db.delete(DATABASE_TABLE, KEY_BARCODE + "=" + barcode, null) > 0;
}
public Cursor getAllProducts()
{
return db.query(DATABASE_TABLE, new String[] {KEY_ROWID, KEY_BARCODE, KEY_QUANTITY}, null, null, null, null, null);
}
の抽出物です。誰か助けてくれますか?