Android使用Eclipse达成沉浸式
程序员文章站
2022-04-21 17:57:12
...
首先application中的 android:theme,要存有以下属性:
<item name="android:windowActionBar">false</item>
<item name="android:windowContentOverlay">@null</item>
<item name="android:windowBackground">@color/white</item>
<!-- 窗口背景颜色 -->
<item name="android:colorBackgroundCacheHint">@null</item>
<item name="android:windowNoTitle">true</item>
<item name="android:backgroundDimEnabled">false</item>
<item name="android:windowTranslucentStatus">true</item>
最后一个属性需要API5.0以上
这样最基本的状态栏沉浸就达成了,剩下的就是需要将颜色保持一致
参考他人的博客:https://blog.csdn.net/ae_fring/article/details/53114582
上一篇: java中异常的分类
下一篇: 异常分类