带复选框的 ListView 项目 - 如何删除复选框波纹效果?

ListView item with checkbox - how to remove checkbox ripple effect?

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

尝试将背景设置为对复选框透明

android:background="@android:color/transparent"

希望如此helps.Thanks