gpt4 book ai didi

android - tablayout 上带有白色背景的 selectableItemBackground?

转载 作者:太空宇宙 更新时间:2023-11-03 12:15:17 25 4
gpt4 key购买 nike

我有一个标签布局

<android.support.design.widget.TabLayout
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="60dp"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:animateLayoutChanges="true"
android:background="@color/background_white" />

为了实现波纹动画,我必须将背景更改为

android:background="?attr/selectableItemBackground"

它启用波纹动画,但默认颜色是灰色,我希望我的背景是自定义颜色,如白色,我也试过

android:background="@color/white"
app:tabBackground="?attr/selectableItemBackground"

但背景色为白色时不显示,

我只是不知道它在白色背景上不起作用的原因是什么?

最佳答案

最后,我了解了如何将背景和可选项目结合在一起。首先,您需要在 styles.xml 中声明两种样式,如下所示

<style name="SelectableItemTheme">
<item name="colorControlHighlight">@color/light_gray</item>
</style>
<style name="SelectableItemBackground">
<item name="android:theme">@style/SelectableItemTheme</item>
<item name="android:background">?attr/selectableItemBackground</item>
</style>

然后您将它作为样式参数分配给选项卡布局,并从中添加您想要的颜色,

<android.support.design.widget.TabLayout
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="60dp"
android:layout_alignParentStart="true"
style="@style/SelectableItemBackground"
android:background="@color/background_login"/>

关于android - tablayout 上带有白色背景的 selectableItemBackground?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40207909/

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