1.style.xml中添加此代码
<style name="TranslucentTheme" parent="Theme.AppCompat.Light.NoActionBar">
<item name="android:windowTranslucentStatus">false</item>
<item name="android:windowTranslucentNavigation">true</item>
<!--Android 5.x开始需要把颜色设置透明,否则导航栏会呈现系统默认的浅灰色-->
<item name="android:statusBarColor">@color/MyDark</item>
</style>
2.在AndroidManifest.xml中将Activity的Theme进行引用
3.在项目所需的Activity的布局文件根目录中添加:
android:fitsSystemWindows="true"
即可实现状态栏的沉浸式---可能会产生闪烁