gpt4 book ai didi

android - 将背景颜色设置为 ActionBar 选项卡会删除分隔线

转载 作者:行者123 更新时间:2023-11-29 01:33:34 26 4
gpt4 key购买 nike

我使用 Android 操作栏和选项卡,我想更改我的选项卡背景颜色。我尝试将它应用到我的风格中:

Widget.AppCompat.ActionBar
Widget.AppCompat.ActionBar.TabBar
Widget.AppCompat.ActionBar.TabView
Widget.AppCompat.ActionBar.Solid

它在所有情况下都有效,但分隔线(每个选项卡之间的小条)在井处被移除。我怎样才能避免这种情况?

最佳答案

您可以定义一种样式并将其应用于您的应用或 Activity :

文件styles.xml:

<style name="MyHoloLightTheme" parent="@style/Theme.AppCompat.Light">
<item name="actionBarStyle">@style/ActionBarStyle</item>
....
<style name="ActionBarStyle" parent="...">
<item name="background">@color/actionBarBackgroundColor</item>
...

文件color.xml:

<color name="actionBarBackgroundColor">#00ff00</color>

应用于AndroidManifest.xml中的app:

<application
...
android:theme="@style/MyHoloLightTheme"
...

关于android - 将背景颜色设置为 ActionBar 选项卡会删除分隔线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29914325/

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