2

我有一个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>

其中有CheckedTextViews:

<?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单击列表项时,我添加了一个要执行的操作。而且当一个项目被点击时,复选框也会被切换。我怎样才能实现侦听器正在捕获单击事件,但复选框不是?

4

1 回答 1

3

要防止CheckedTextView切换,请执行以下操作:
1. 子类CheckedTextView
2.覆盖setChecked(boolean)方法。
3.用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"
 />  

以下是包含多项选择的活动ListViewOnItemClickListener其中显示已单击的列表项。请注意,在这样的点击事件期间,复选框不会被切换(感谢覆盖的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();
    }

}  

下图显示了ListView单击名为“Charlie”的列表项时多选的行为:

在此处输入图像描述

于 2013-09-06T05:00:17.557 回答