Transparent navigation bar for Lollipop app?

What can I add to the .xml theme to change the navigation bar to be more transparent? I can’t find the documentation anywhere. Thanks!

+5
source share
2 answers

In your topic, add the following line:

<item name="android:windowTranslucentNavigation">true</item> 

Romain Guy has published a good sample application that uses this API. Maybe this will help. (You may need to reorganize some code since the project was originally written using the Android L developer preview).

+11
source

Alex's answer is correct. you can use

 <item name="android:windowTranslucentNavigation">true</item> 

Another option is to use

 <item name="android:windowBackground">@android:color/transparent</item> 
+2
source

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


All Articles