Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Change color of onscreen button bar

I'm trying to change the color of the on screen button bar: enter image description here

I've managed to change the status bar color via the Android Manifest like this:

android:theme="@style/Theme.WebViewApp.Gray"

However I can't seem to figure out how to change from this purple color.

like image 826
Mr Riksson Avatar asked Nov 03 '15 13:11

Mr Riksson


People also ask

Can I change the color of the navigation bar in Android?

You don't need to have root access to change the navigation bar color. You just need to download a free customization app known as the Navbar app which is available on the Google Play Store. Now, check out the below steps to change the navigation bar color on Android smartphone 2020.


1 Answers

This section of screen called NavigationBar:

enter image description here

You can change color of NavigationBar using: http://developer.android.com/reference/android/view/Window.html#setNavigationBarColor(int)

This Method won't work on API version < 21.

To change navigation bar icon colors you can use the following answers: Change navigation bar icon color on Android

like image 137
AliSh Avatar answered Oct 20 '22 08:10

AliSh