以下是我的XML代码,我需要为LinearLayout创建一个选择器,但是当我点击子TextView时它不会显示选择器背景作为点击LinearLayout的其他区域!
<?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="50dp"
android:gravity="center_vertical"
android:clickable="true"
android:focusable="true"
android:descendantFocusability="blocksDescendants"
android:background="?android:attr/selectableItemBackground">
<ImageView android:paddingLeft="35dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/chart"/>
<TextView android:paddingLeft="10dp"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:textAppearance="?android:attr/textAppearanceMedium"
android:text="Medium Text"
android:id="@+id/tv_title" />
<ImageView android:paddingRight="15dp"
android:layout_width="50dp"
android:layout_height="50dp"
android:src="@drawable/ic_star_border_black_48dp"
android:id="@+id/iv_bookmark" />
</LinearLayout>
答案 0 :(得分:1)
试试这个:
<TextView android:paddingLeft="10dp"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:textAppearance="?android:attr/textAppearanceMedium"
android:text="Medium Text"
android:id="@+id/tv_title"
android:clickable="false"
android:focusable="false" />
我认为错误的原因是因为descendantFocusability
仅用于聚焦状态。它不会影响触摸事件。由于TextView
仍然可以点击,因此它仍然会消耗触摸事件,从而使父母不会消耗点击。
编辑:
尝试将android:descendantFocusability
设置为beforeDescendants
而不是blocksDescendants
。
编辑2 :
将父级更改为android:addStatesFromChildren="true"
并从子级clickable
中移除focusable
和TextView
似乎可以解决问题。这是有效的,因为根据ViewGroup
android文档:
addStatesFromChildren:设置此ViewGroup的可绘制状态是否也包含其子项的可绘制状态。
因此,当孩子设置其状态时,它也会设置其父母状态。
答案 1 :(得分:0)
尝试在android:focusable
中设置android:focusableInTouchMode
和false
至TextView
。