我想創建ListView
的複選框,將List
傳遞給它,當對象被添加到列表中時ListView
將自動更新。 我定義ListView
:Android中CheckBox的ListView通過字符串而不是複選框可視化
<ListView
android:id="@+id/productList"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
</ListView>
我添加複選框收集到listView
:
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View rootView = inflater.inflate(R.layout.fragment_product_list,
container, false);
ListView listView = (ListView) rootView.findViewById(R.id.productList);
ArrayList<CheckBox> list = new ArrayList<CheckBox>();
CheckBox el = new CheckBox(rootView.getContext());
el.setText("STH");
list.add(el);
ArrayAdapter<CheckBox> adapter = new ArrayAdapter<CheckBox>(rootView.getContext(),android.R.layout.simple_list_item_1, list);
listView.setAdapter(adapter);
return rootView;
}
,結果是可怕的:
我可能會得到Checkbox.toString()
內那ListView
而不是複選框列表。
如何獲取我可以點擊和選擇並將在一個容器中的複選框列表。
如果你downvote說爲什麼。我會更新這個問題。 – Yoda
您將您的checkBox添加到一個列表,然後生成您的適配器,在默認的'ArrayAdapter' toString()方法調用,你看到的文字,最好的辦法做到這一點,我認爲是編寫自己的適配器填充'複選框' –