gpt4 book ai didi

android - 如何更改 Activity 工具栏中的菜单指示器颜色

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

我想更改 Activity 工具栏中的菜单指示器颜色,现在它的颜色不是白色或者它有 alpha 选项,我想变成白色

enter image description here

我正在使用 AppCompatActivity,这是我的工具栏 xml 代码

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:background="@color/primary"
android:elevation="2dp"
android:theme="@style/Base.ThemeOverlay.AppCompat.Dark"
xmlns:android="http://schemas.android.com/apk/res/android" />

谢谢

最佳答案

您可以自定义白色的溢出图标,并像这样在您的主题样式中应用该图标

<!-- Application theme. -->
<style name="AppTheme" parent="AppBaseTheme">
<item name="android:actionOverflowButtonStyle">@style/CustomOverFlow</item>
</style>

<style name="CustomOverFlow" parent="@android:style/Widget.Holo.ActionButton.Overflow">
<item name="android:src">@drawable/your_custom_icon</item>
</style>

关于android - 如何更改 Activity 工具栏中的菜单指示器颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34315177/

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