我正在使用用于我的ListView的自定义适配器。创建 ArrayList 后
WifiListAdapter<WifiListItem> adapter = new WifiListAdapter<WifiListItem>(
this, R.layout.listview_item_text, listItems);
我的应用程序中有以下代码:
ListView listView = (ListView) findViewById(android.R.id.list);
listView.setChoiceMode(ListView.CHOICE_MODE_MULTIPLE);
listView.setAdapter(adapter);
但是,当我尝试单击复选框时,没有任何反应。所以我必须手动管理切换复选框状态。
protected void onListItemClick(ListView l, View v, int position, long id) {
CheckedTextView checkBox = (CheckedTextView) v
.findViewById(R.id.text1);
if (checkBox != null) {
checkBox.toggle();
然后它工作。(在此之前我必须删除 setChoiceMode 方法调用)
那么可能是什么问题呢?为什么没有效果?
我的 R.layout.listview_item_text.xml
<TextView
android:id="@+id/topText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="22sp"
android:paddingTop="7dp"
android:textColor="?android:attr/textColorPrimary"/>
<TextView
android:id="@+id/botText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="17sp"
android:paddingTop="2dp"
android:paddingBottom="7dp"
android:textColor="?android:attr/textColorTertiary"
/>
在我的适配器中,我使用以下代码扩展复选框布局:
convertView = mInflater.inflate(
R.layout.listview_item_checkbox, null);
CheckedTextView checkbox = ((CheckedTextView) convertView
.findViewById(R.id.text1))
listview_item_checkbox.xml
<CheckedTextView
android:id="@+id/text1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:textSize="22sp"
android:paddingTop="7dp"
android:paddingBottom="7dp"
android:checkMark="?android:attr/listChoiceIndicatorMultiple"
/>