Transparent Navigation Bar for Lollipop app?

北城余情 提交于 2019-12-10 15:08:45

问题


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!


回答1:


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).




回答2:


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>


来源:https://stackoverflow.com/questions/26824305/transparent-navigation-bar-for-lollipop-app

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!