How to change color buttons of navigation

enter image description here

all the words I wrote in the picture i need change color buttons of navigation warning color buttons not android:statusBarColor

Upvotes: 0

Views: 94

Answers (2)

Vatsal Maniya
Vatsal Maniya

Reputation: 1

Add this code to your drawable resource file in android in .xml

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

Upvotes: 0

Mahdi Iranmanesh
Mahdi Iranmanesh

Reputation: 580

From API 27 you can use this code:

<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

Upvotes: 2

Related Questions