gpt4 book ai didi

android - 使用布局的选择器更改其子项的属性

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:23:40 34 4
gpt4 key购买 nike

默认情况下,ListView 在按下时将背景颜色更改为橙​​色,并且 TextViewTextColor 更改为白色/黑色。通过在 ListView 项目上应用选择器,我们可以为按下状态设置背景颜色,但我们也可以为该项目内的 TextView 定义 TextColor/同一选择器内的布局?如果是,那又如何?

最佳答案

Amy88 的回答解决了这个问题,但没有具体解决更改 ViewGroup 的子属性的问题。

假设您有一个可点击的 LinearLayout 和一个 TextView,按下时应该改变颜色。关键是在 subview 上使用 android:duplicateParentState="true":

<LinearLayout
android:duplicateParentState="true"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >

<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:duplicateParentState="true"
android:text="@string/hello_world"
android:textColor="@drawable/text_selector" />

</LinearLayout>

您可以按照 Amy88 的回答指定选择器。

关于android - 使用布局的选择器更改其子项的属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8211203/

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