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

猜你喜欢

转载自www.cnblogs.com/lancelee98/p/9504974.html