我正在使用 aSimpleAdapter
来填充ListView
下面的代码。
SimpleAdapter adapter = new SimpleAdapter(this,
saleDriver.getOutstandings(clientId),
R.layout.outstanding_list_row, new String[] { "sale_id",
"sale_date", "invoice_number", "sale_total", },
new int[] { R.id.tt_check_box, R.id.tt_invoice_date,
R.id.tt_invoice_no, R.id.tt_invoice_tot });
setListAdapter(adapter);
sale_id
根据上面的代码,我CheckBox (R.id.tt_check_box)
在listview
. 当我运行程序时,checkboxes
复选框右侧显示为文本的值。但我不想显示它们。
我的实际需要是,当用户检查时checkboxes
,我需要sale_id
与他们绑定。
我如何通过在我的 java 程序sale_id
中检查来访问 s 绑定?checkboxes