從JSON解析它之後,我正在生成複選框的列表。當提交按鈕被按下時,我想知道哪些所有框被選中。我該怎麼做呢 ?在JSON填充的android視圖中單擊的複選框的列表
我的XML代碼(省略非常明顯的東西一樣的高度,寬度,XMLNS等):
<LinearLayout>
<TextView
android:id="@+id/title"
android:text="@string/CatalogueTitle" />
<CheckBox
android:id="@+id/checkBox" />
</LinearLayout>
該Java片段填充數據,並添加文本到相鄰的TextView
TextView title = (TextView) v.findViewById(R.id.title);
CheckBox cbox = (CheckBox) v.findViewById(R.id.checkBox);
if (title != null) {
title.setText(tdunit.title);
}
的onsubmit ,我如何識別複選框?
是U顯示方面的詳細列表複選框在裏面? – stella 2012-01-03 12:10:43
@stella是的。 TextView中的複選框的標題,然後是其旁邊的複選框。 – Jaseem 2012-01-03 12:13:10