gpt4 book ai didi

android - 如何更改 Lollipop 之前和 Lollipop 版本的工具栏菜单项文本颜色

转载 作者:太空狗 更新时间:2023-10-29 15:30:39 28 4
gpt4 key购买 nike

我使用工具栏是为了在我的应用程序中进行 Material 设计。一切正常,但除了更改菜单项文本颜色时,我完全无法接受该解决方案。我还张贴了我在申请中使用的文本和代码的屏幕截图,供您引用。我尝试了几种替代方法,例如如下分配

<item name="android:actionMenuTextColor">@color/white</item>

<item name="android:textColor">#000</item>

但已知上述解决方案对我有用。

需求截图:

enter image description here

需要将 SKIP 菜单项从黑色更改为白色。

styles.xml

<style name="ToolBarTheme" parent="@style/Theme.AppCompat.Light">
<item name="colorPrimary">@color/blue</item>
<item name="colorPrimaryDark">@color/blue</item>
<item name="windowNoTitle">true</item>
<item name="windowActionBar">false</item>
<item name="drawerArrowStyle">@style/DrawerArrowStyle</item>
<item name="android:actionMenuTextColor">@color/white</item>
<item name="android:textColor">#000</item>

</style>

toolbar.xml

<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:layout_scrollFlags="scroll|enterAlways"
android:fitsSystemWindows="true"
android:background="?attr/colorPrimary"/>

list

<activity
android:name=".activity.HomeActivity"
android:label="@string/app_name"
android:screenOrientation="portrait"
android:configChanges="keyboard|screenLayout|orientation"
android:theme="@style/ToolBarTheme"></activity>

我真的不知道我哪里错了。请帮我。提前致谢

最佳答案

改变这个

<item name="android:actionMenuTextColor">@color/white</item>

<item name="actionMenuTextColor">@color/white</item>

并将主题应用到工具栏:

android:theme="@style/ToolBarTheme"

您可以设置小部件的样式并为您的 Activity 提供主题。

关于android - 如何更改 Lollipop 之前和 Lollipop 版本的工具栏菜单项文本颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32181278/

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