我有一个ListView
:
<ListView
android:id="@+id/sensorList"
android:layout_width="match_parent"
android:layout_height="250dp"
android:layout_centerHorizontal="true"
android:layout_margin="16dp"
android:layout_below="@+id/chooseHint"
android:choiceMode="multipleChoice" >
</ListView>
其中有
CheckedTextView
s:<?xml version="1.0" encoding="utf-8"?>
<CheckedTextView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/textView"
android:layout_margin="5dp"
style="@android:style/TextAppearance.Medium"
android:checkMark="?android:attr/listChoiceIndicatorMultiple" />
我添加了一个
OnItemClickListener
以在单击列表项时执行某些操作。但是,当单击某个项目时,复选框也会切换。如何实现侦听器正在捕获单击事件,但复选框没有捕获? 最佳答案
要防止CheckedTextView
切换,请执行以下操作:
一。子类CheckedTextView
。
2.覆盖setChecked(boolean)
方法。
三。将您的CheckedTextView
替换为重写的。
步骤1和2的代码:
package com.example.multichoicelist;
public class UnresponsiveCheckedTextView extends CheckedTextView {
public UnresponsiveCheckedTextView(Context context) {
this(context, null);
}
public UnresponsiveCheckedTextView(Context context, AttributeSet attrs) {
this(context, attrs, 0);
}
public UnresponsiveCheckedTextView(Context context, AttributeSet attrs,
int defStyle) {
super(context, attrs, defStyle);
}
@Override
public void setChecked(boolean checked) {
//Do nothing.
}
}
是
setChecked
方法刷新CheckedTextView
的选中状态,从而产生切换效果。覆盖setChecked
将阻止用户单击列表项时切换CheckedTextView
的复选框。步骤3的XML:
<com.example.multichoicelist.UnresponsiveCheckedTextView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/textView"
style="@android:style/TextAppearance.Medium"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="5dp"
android:checkMark="?android:attr/listChoiceIndicatorMultiple"
/>
下面是包含多项选择
ListView
和显示已单击列表项的OnItemClickListener
的活动。请注意,在这种单击事件期间,复选框不会被切换(由于覆盖的CheckedTextView
实现):package com.example.multichoicelist;
public class MainActivity extends ListActivity implements OnItemClickListener {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
ListView mListView = getListView();
mListView.setOnItemClickListener(this);
mListView.setChoiceMode(ListView.CHOICE_MODE_MULTIPLE);
mListView.setAdapter(ArrayAdapter.createFromResource(this,
R.array.phonetic_alphabet, R.layout.list_item));
}
@Override
public void onItemClick(AdapterView<?> arg0, View childView,
int adapterPosition, long arg3) {
Toast.makeText(this,
((CheckedTextView) childView).getText() + " selected",
Toast.LENGTH_SHORT).show();
}
}
下图显示了单击名为“charlie”的列表项时多项选择的行为: