1

我在 android 的列表视图中实现复选框,但是为此我使用的是图像视图而不是复选框。我也在 xml 中设置状态选择的真假情况。当用户第一次单击复选框时,它应该是标记为已检查第二次单击它应该显示另一个图像。但是单击此图像时状态不会改变。以下是我的代码:

在适配器类中:

ImageView checkBox1=(ImageView)itemview.findViewById(R.id.checkBox1);
checkBox1.setTag(new selector(0, position));

在 XML 中:

<ImageView
    android:id="@+id/checkBox1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_alignParentTop="true"
    android:src="@drawable/checkbox_image"
    android:focusable="false"
    android:gravity="center" />

最后是 checkbox_image xml 文件:

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">    
    <item android:drawable="@drawable/check_box_select" android:state_selected="true"/> 
    <item android:drawable="@drawable/check_box" android:state_selected="false"/>   
</selector>
4

0 回答 0