Change the color of the on-screen button bar

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

I managed to change the color of the status bar through Android Manifest as follows:

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

However, I cannot figure out how to change this purple color.

+4
source share
1 answer

This section of the screen is called the NavigationBar:

enter image description here

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

This method will not work in API version <21.

+7
source

Source: https://habr.com/ru/post/1614276/


All Articles