Reputation: 115
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
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
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