Mr Riksson
Mr Riksson

Reputation: 560

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.

Upvotes: 14

Views: 7958

Answers (1)

AliSh
AliSh

Reputation: 10639

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

Upvotes: 26

Related Questions