我有一个带有项目的ListView包含一个复选框和一些其他元素。问题是,当我点击Android 5+设备上的列表项时,我看起来像这样:
我不想在复选框周围产生连锁反应。 我该如何实现这一目标?
项目XML代码:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="@dimen/list_item_height"
android:gravity="center_vertical"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin">
<CheckBox
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/item_check"
android:checked="false"
android:focusable="false"
android:layout_marginRight="32dp"
android:clickable="false"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/item_title"
android:textAppearance="@android:style/TextAppearance.Medium"
android:maxLines="1"
android:lines="1"/>
</LinearLayout>
答案 0 :(得分:24)
尝试将背景设置为对复选框的透明
机器人:背景=&#34; @android:彩色/透明&#34;
希望它有所帮助。谢谢