Android Studio 关于沉浸式状态栏

values-v19/style.xml

<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar"> <item name="android:windowTranslucentStatus">true</item> <item name="android:windowTranslucentNavigation">true</item> </style>

values-v21/style.xml

<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar"> <item name="android:windowTranslucentStatus">false</item> <item name="android:windowTranslucentNavigation">true</item> <item name="android:statusBarColor">@android:color/transparent</item> </style>

  • 在布局文件中加入 android:fitsSystemWindows=”true”

https://blog.csdn.net/fan7983377/article/details/51604657

posted @ 2018-08-20 12:52  lancelee98  阅读(1395)  评论(0编辑  收藏  举报