gpt4 book ai didi

android - ActionBar 和 ActionBar Tabs 是纯白色的

转载 作者:行者123 更新时间:2023-11-29 21:20:59 26 4
gpt4 key购买 nike

我们怎样才能让操作栏和操作栏选项卡变成纯白色。我正在使用 android-support-v7-appcompat 库来支持向后兼容性。 style/Theme.AppCompat.Light.DarkActionBar 提供纯黑色,但 style/Theme.AppCompat.Light 不提供纯白色。

最佳答案

没有提供白色操作栏的默认主题。您需要为您的应用制作自定义操作栏。

开发者文档有一篇关于自定义操作栏的好文章。

https://developer.android.com/training/basics/actionbar/styling.html

这些是您需要更改的自定义样式。

res/values/themes.xml

请参阅 android:background 标记,您可以在其中为操作栏设置可绘制对象。

<?xml version="1.0" encoding="utf-8"?><resources>    <!-- the theme applied to the application or activity -->    <style name="CustomActionBarTheme"           parent="@style/Theme.Holo.Light.DarkActionBar">        <item name="android:actionBarStyle">@style/MyActionBar</item>    </style>    <!-- ActionBar styles -->    <style name="MyActionBar"           parent="@style/Widget.Holo.Light.ActionBar.Solid.Inverse">        <item name="android:background">@drawable/actionbar_background</item>    </style></resources>

将主题应用到您的应用。

<application android:theme="@style/CustomActionBarTheme" ... />

关于android - ActionBar 和 ActionBar Tabs 是纯白色的,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20737131/

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