Ze Qian Mok
Ze Qian Mok

Reputation: 105

Change Android nav bar buttons colour

Is there any way to change the color of the navigation bar BUTTONS not the navigation bar itself from white to grey:

enter image description here

to

enter image description here

Upvotes: 2

Views: 2392

Answers (1)

Arash Hatami
Arash Hatami

Reputation: 5561

you can do this in API > 21 as follow :

if (Build.VERSION.SDK_INT >= 21) {
    getWindow().setNavigationBarColor(ContextCompat.getColor(this, R.color.some_color));
}

see more information here


or just add following code in values-v21/style.xml

<item name="android:navigationBarColor">@color/theme_color</item>

Upvotes: -2

Related Questions