Replies from nackiinaz
แล้วลืมแล้วใช้ไหมคะ T_T
เงียบฉี่ – -”
ได้แล้วค่ะ hashmap ^^ขอบคุณมากๆเลยนะคะ
ขอถามอีกนิสนึงนะคะ คือ hashmap มันมาเป็นรูปแบบ
แล้วเราสามารถแปลงหั้ยอยู่ในรูป String [][] ได้ไหมคะ
Iterator it = hashmap.keySet().iterator();
while (it.hasNext()) {
Key = it.next();
Value = hashmap.get(Key);
แล้วเอา Key กับ Value มาเก็บไว้ใน String[][] arrTicketPrice แบบนี้อ่าค่ะ
public String[][] arrTicketPrice = new String[][] {
{ “key1”, “value1” }, { “key2”, “value2” }, { “…”, “…” }, { “…”, “…” }, { “4”, “…” },
{ “5”, “…” }, { “6”, “…” }, { “7”, “…” }, { “8”, “…” },
{ “9”, “…” }, { “10”, “…” }, { “11”, “…” }, { “12”, “…” },
{ “13”, “…” }, { “14”, “…” }, { “15”, “…” }, { “16”, “…” },
{ “17”, “…” } };
ขอบคุนนะคะ
ขอบคุนมากเลยค่ะ ; )
แต่ขอถามอีกหน่อยนะคะ
นู๋เขียนแบบนี้แล้วมัน force close อ่าค่ะ
ส่วนของ DataBaseAdapter
public Cursor fetchfood(String food_id) {
return mDb.query(DATABASE_TABLE3, new String[] { KEY_FOOD_ID,
KEY_FOODBALANCE }, “food_id = ‘” + food_id + “‘”, null, null,
null, null);
}
ส่วนของ อีก class นึง
if (text == “Food”) {
mDbHelper.savefood(_balance, _order, _remark);
Cursor cursorfood = mDbHelper.fetchfood(text);
if (cursorfood != null) {
int sumRow = 0;
while (cursorfood.moveToNext()) {
try {
sumRow += cursorfood.getInt(0);
} catch (Exception e) {
Log.d(“DEBUG”, e.toString());
}
}
Toast
.makeText(EasytyWallet.this, sumRow,
Toast.LENGTH_LONG);
}
cursorfood.close();
mDbHelper.close();
}
หายไปไหนกันหมด ผู้รู้ไม่มีคัยตอบเลย ;(