6
votes

I have been looking for a way to re-color the navigation bar while the status bar is fully transparent (not translucent). Getting the status bar to be completely transparent requires the layout flags to be set to NO_LIMITS but that also makes the navigation bar lose its color. Is there any way to achieve this?

2

2 Answers

1
votes

If you do not need the status bar text to be dark, the following works.

        getWindow().getDecorView().setSystemUiVisibility(
                View.SYSTEM_UI_FLAG_LAYOUT_STABLE
                        | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN);

And change the navigation bar color as @JaviChaqués suggest.

0
votes

You can set this:

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