1

i want to change the color of the native bottom navigation of android phones. Like in the image bellow, it's fully dark. Is this actually possible ? And if yes, how can i do this ?

Thank you,

enter image description here

Pensée Absurde
  • 1,315
  • 1
  • 14
  • 20
  • Possible duplicate of [Android lollipop change navigation bar color](https://stackoverflow.com/questions/27839105/android-lollipop-change-navigation-bar-color) – Fantini Jan 03 '19 at 15:22

1 Answers1

3

Here is answer for you: https://stackoverflow.com/a/27839184/10802597, you have to use

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

in styles.xml

Cheers :)

MrFisherman
  • 720
  • 1
  • 7
  • 27