单击列表视图后,未选中复选框

时间:2012-11-22 18:36:02

标签: android android-listview android-checkbox

我有一个活动,其中有一个带有文本视图的列表视图和右侧的复选框。我希望在单击列表视图项时检查复选框。 (不在复选框上)。就像android用来逐个检查邮件一样被删除。

任何人都可以帮我解决这个问题吗?我关掉了

android:focusable="false

android:focusableInTouchMode="false" 

复选框。

下面是我的列表视图项xml。

<TextView
    android:id="@+id/textView2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_alignParentTop="true"
    android:text="1."
    android:textAppearance="?android:attr/textAppearanceMedium"
    android:textColor="@android:color/white" />

<TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentTop="true"
    android:layout_marginLeft="18dp"
    android:layout_toRightOf="@+id/textView2"
    android:text="Medium Text"
    android:textAppearance="?android:attr/textAppearanceMedium" />

<CheckBox
    android:id="@+id/checkBox1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentRight="true"
    android:layout_below="@+id/textView1"
    android:layout_marginRight="22dp"
    android:layout_marginTop="-15dp" 
    android:focusable="false"
    android:focusableInTouchMode="false"/>

这是我的代码:

list.setOnItemClickListener(new OnItemClickListener() {
    @Override
    public void onItemClick(AdapterView<?> arg0, View arg1,int arg2, long arg3) {
        // TODO Auto-generated method stub
        if(checkbox.isChecked())
            checkbox.setChecked(false);

        else
            checkbox.setChecked(true);
    }
});

3 个答案:

答案 0 :(得分:1)

android:clickable="false"添加到CheckBox。

在您的情况下,最好使用CheckedTextView,并使用ListView.setChoiceMode(ListView.CHOICE_MODE_MULTIPLE)启用多选。

AbsoluteSizeSpan/RelativeSizeSpan + SpannableStringBuilder可以帮助您在一个TextView中实现不同的文本大小。

答案 1 :(得分:1)

我的答案为时已晚,但效果很好。

list.setOnItemClickListener(new OnItemClickListener() {
        @Override
        public void onItemClick(AdapterView<?> arg0, View arg1,int arg2, long arg3) {
            CheckBox cb = (CheckBox) arg1.findViewById(R.id.checkBox1);
              TextView tv = (TextView) arg1.findViewById(R.id.textView1);
              cb.performClick(); //this will trigger the checkbox
              //do here 
              if(checkbox.isChecked())
                  checkbox.setChecked(false);
              else
                  checkbox.setChecked(true);
        }
});

如果你想从BaseAdapter获取变量值以获取检查位置或值等,请检查this

答案 2 :(得分:0)

下面是我修改为添加CheckedtextView

的xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >


        <CheckedTextView
            xmlns:android="http://schemas.android.com/apk/res/android"
            android:id="@+id/checkedTextView"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:checkMark="?android:attr/listChoiceIndicatorMultiple"
            android:gravity="center_vertical"
            android:paddingLeft="6dip"
            android:paddingRight="6dip"
            android:textAppearance="?android:attr/textAppearanceMedium" />

</RelativeLayout>

下面是在listAdapter

上的getView中编写的onClick方法
CheckedTextView chkBox = (CheckedTextView) findViewById(R.id.CheckedTextView01);
        chkBox.setOnClickListener(new View.OnClickListener() {
            public void onClick(View v)
            {
                ((CheckedTextView) v).toggle();
            }
        });