gpt4 book ai didi

android - 工具栏 - 灯光标题和灯光菜单

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:52:14 28 4
gpt4 key购买 nike

我目前正在开发一个实现 Appcompat 工具栏的应用程序。现在我的问题是,如果我选择一个 Light Actionbar 作为基础,菜单是白色的,标题是黑色的。我希望两者都是白色的。如果我更改为 Dark Actionbar 作为基础,文本为白色,但菜单变暗。

截图如下:

enter image description here

我只希望标题文本颜色为白色。

这是我的 styles.xml:

<resources>

<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light">
<item name="windowActionBar">false</item>
<item name="colorPrimary">@color/primary</item>
<item name="colorAccent">@color/accent</item>
<item name="colorPrimaryDark">@color/primary_dark</item>
</style>


</resources>

这是 toolbar.xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="?attr/actionBarSize"
android:background="?attr/colorPrimary"/>

我希望你能帮助我。提前致谢!

最佳答案

将此添加到您的工具栏元素

<!-- dark toolbar -->
<item name="android:theme">@style/ThemeOverlay.AppCompat.Dark.ActionBar</item>
<!-- light popup -->
<item name="popupTheme">@style/ThemeOverlay.AppCompat.Light</item>

关于android - 工具栏 - 灯光标题和灯光菜单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27580532/

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