Transparent Navigation Bar for Lollipop app?

2019-06-21 06:13发布

What do I add to themes.xml to change the navigation bar to be more transparent? I can't find documentation for it anywhere. Thanks!

2条回答
做个烂人
2楼-- · 2019-06-21 06:17

In your theme add the following line:

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

Romain Guy has published a nice sample app that uses this API. Maybe it will help. (You might need to refactor some code since the project was originally written using the Android L developer preview).

查看更多
Deceive 欺骗
3楼-- · 2019-06-21 06:39

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>
查看更多
登录 后发表回答