我創建了一個ListView
與Checkbox
和一些TextView
S作爲附着在下面。我創建了一個Android Activity
和ListActivity
extends
它。我使用的是SimpleAdapter
與下面的代碼,以填補我的ListView
在我Android Activity
。從數據庫中檢索數據以填充此ListView
。確定複選框處於選中狀態在ListView
SimpleAdapter adapter = new SimpleAdapter(this,
saleDriver.getOutstandings(clientId),
R.layout.outstanding_list_row, new String[] {
"sale_date", "invoice_number", "sale_total", },
new int[] { R.id.tt_invoice_date,
R.id.tt_invoice_no, R.id.tt_invoice_tot });
setListAdapter(adapter);
另外顯示一個按鈕(假設Pay
)在機器人裝置當用戶按下按鈕Menu
。當用戶選中一個或多個CheckBoxes
並按下該按鈕時,我需要獲取該列表行中的數據。 (根據下面的示例圖片,我需要獲得4341
和0910201
)。
我怎麼能做到這一點?
能否請您提供一些例子。 – Bishan
http://developer.android.com/reference/android/widget/SimpleAdapter.html這是你需要去通過完成你的任務是什麼。 –
好的。我會檢查出來的。 – Bishan