gpt4 book ai didi

android - 为什么我的 RelativeLayout 不使用选择器?

转载 作者:行者123 更新时间:2023-11-29 00:04:28 25 4
gpt4 key购买 nike

我有一个 RelativeLayout

<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/container"
android:layout_centerInParent="true"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:clickable="true"
android:background="@drawable/animated_bg">

我已经定义了一个选择器

<ripple xmlns:android="http://schemas.android.com/apk/res/android"
android:color="@color/ripple_color">
<item>
<selector>
<item android:state_pressed="true"
android:drawable="@color/grey_1" />

<item android:state_focused="true"
android:drawable="@color/grey_1" />

<item android:drawable="@color/white" />
</selector>
</item>

但是当我按下布局时它不会改变颜色。

有人能注意到为什么会这样吗?

更新

这是完整的xml文件

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/container"
android:layout_centerInParent="true"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:clickable="true"
android:background="@drawable/animated_bg">

<RelativeLayout>

<RelativeLayout>

<ImageView />

<LinearLayout>

<TextView />

<TextView />

</LinearLayout>

</RelativeLayout>

<LinearLayout >

<LinearLayout >

<RelativeLayout >

<ImageView />

<TextView />

<TextView />

<TextView />

</RelativeLayout>

<RelativeLayout >

<ImageView />

<TextView />

<TextView />

</RelativeLayout>

</LinearLayout>

<LinearLayout >

<RelativeLayout >

<TextView />

</RelativeLayout>
</LinearLayout>
</LinearLayout>

</RelativeLayout>

</RelativeLayout>

最佳答案

我已经用它的选择器测试了你的布局。它运作良好。但是,我不知道您的相对布局中是否还有其他 View /布局?如果 RelativeLayout 有 subview 。这些 View 可能会消耗您的事件 press ,这将导致背景颜色不变。在我的测试中,我的相对布局中没有任何 subview 。你能发布你的整个布局文件吗?

更新:如果您的 subview 不需要处理点击事件,您可以设置 android:clickable="false",这样点击事件将传递给您的父级相关布局。如果不是这样,那么这个 link可能对你有帮助。

关于android - 为什么我的 RelativeLayout 不使用选择器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34954115/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com