Reputation: 105
Is there any way to change the color of the navigation bar BUTTONS not the navigation bar itself from white to grey:
to
Upvotes: 2
Views: 2392
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