对沉浸式和透明状态栏的理解:
沉浸式:厂商用来装逼的术语,就是我们常说的透明状态栏
透明式:状态栏字体图标可见,背景色为透明
透明状态栏实现方法:
一、半透明效果:
方法1:在需要设置半透明效果的activity中加入以下代码:设置状态栏颜色为透明即可
if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
Window window = getWindow();
window.setStatusBarColor(Color.TRANSPARENT);
}
方法2:
第一步:在Androidmanifest中为需要设置半透明效果的activity加入自定义主题,theme_main为自定义主题
<activity android:name=".MainActivity" android:theme="@style/theme_main">
第二步:在styles.xml文件中加入自定义主题,设置如下
<style name="theme_main" parent="Theme.AppCompat.Light.NoActionBar">
<item name="android:windowTranslucentStatus">true</item>
</style>
第三步:在activity的xml文件中,根节点插入:android:fitsSystemWindows="true",因为这种方法会使得整个屏幕忽略掉状态栏而上移
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tl="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
>
二、全透明效果:主要是设置全屏和状态栏颜色透明
if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
Window window = getWindow(); window.getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN);
window.setStatusBarColor(Color.TRANSPARENT);
}
参考文章:https://blog.csdn.net/xuaho0907/article/details/72832304,测试机型:三星s9,注:不要使用SmartisanOS测试
来源:CSDN
作者:半斤水泥
链接:https://blog.csdn.net/hhyihquk1/article/details/84949730