简体   繁体   English

如何更改导航的颜色按钮

[英]How to change color buttons of navigation

在此处输入图像描述

all the words I wrote in the picture i need change color buttons of navigation warning color buttons not android:statusBarColor我在图片中写的所有文字我需要更改导航警告颜色按钮的颜色按钮不是 android:statusBarColor

From API 27 you can use this code:从 API 27 开始,您可以使用以下代码:

<item name="android:navigationBarColor">@android:color/white</item>
<item name="android:windowLightNavigationBar">true</item>

in the first line, you set the navigation bar background color and in second-line, you set the navigation bar icon color to light or dark在第一行中,设置导航栏背景颜色,在第二行中,将导航栏图标颜色设置为浅色或深色

Add this code to your drawable resource file in android in .xml将此代码添加到 .xml 中的 android 中的可绘制资源文件

<item name="android:navigationBarColor">@android:color/white</item>
<item name="android:windowLightNavigationBar">true</item>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM