美文网首页Android资源收录iOS技术Android
关于状态栏StatusBar(System UI)的各种操作..

关于状态栏StatusBar(System UI)的各种操作..

作者: i冰点 | 来源:发表于2016-08-24 17:36 被阅读2814次

    1、透明状态栏,内容延伸至状态栏

    在主题中设置
    API 19

    <style name="AppTheme.ExtendStatusBar" parent="AppTheme">
        <item name="android:windowTranslucentStatus">true</item>
    </style>
    

    API 21

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

    注意:
    1、windowTranslucentStatus,如果为true,状态栏就会变成半透明的
    2、windowTranslucentStatus、windowTranslucentNavigation,都可以触发LAYOUT_FULLSCREEN 、LAYOUT_STABLE
    android windowTranslucentNavigation

    或者

        <style name="AppTheme.ExtendStatusBar" parent="AppTheme">
            <item name="android:statusBarColor">@android:color/transparent</item>
        </style>
    
    +
    
        if(Build.VERSION.SDK_INT>=19){
            View decorView=getWindow().getDecorView();
            int option=View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN 
                                        | View.SYSTEM_UI_FLAG_LAYOUT_STABLE;
            decorView.setSystemUiVisibility(option);
        }
    

    注意:
    1、LAYOUT_FULLSCREEN:使状态栏出现的时候,不会重新调整activity的高度,状态栏覆盖在activity之上。
    2、LAYOUT_STABLE:
    3、LAYOUT_FULLSCREEN 、LAYOUT_STABLE:让应用的主体内容占用系统状态栏的空间;
    4、statusBarColor:使状态栏透明

    布局文件

    <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/main_content"
        android:layout_width="match_parent"
        android:layout_height="match_parent">
    
        <ImageView
            android:id="@+id/backdrop"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:scaleType="centerCrop"
            android:src="@drawable/ic_yd_1"/>
    
    </FrameLayout>
    

    也可以在代码中设置:

        if(Build.VERSION.SDK_INT>=21){
            View decorView=getWindow().getDecorView();
            int option=View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
                    | View.SYSTEM_UI_FLAG_LAYOUT_STABLE;
            decorView.setSystemUiVisibility(option);
            getWindow().setStatusBarColor(Color.TRANSPARENT);
        }
    }
    
    内容延伸至状态栏,透明状态栏

    布局文件:

    <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/main_content"
        android:layout_width="match_parent"
        android:layout_height="match_parent">
    
        <ImageView
            android:id="@+id/backdrop"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:scaleType="centerCrop"
            android:src="@drawable/ic_yd_1"/>
    
    </FrameLayout>
    
    Make Content Appear Behind the Status Bar

    2、半透明的状态栏 Translucent Status Bar

    Translucent ,是在Android 4.4加入的,它的实现方法有两种:在主题文件中设置、通过setFlags()方法设置;在Android 4.4、5.X、6.X的实现方法是相同的,但效果略有差别。

    在主题中设置:

    <style name="AppTheme.ColorStatusBar" parent="AppTheme">
        <item name="android:windowTranslucentStatus">true</item>
        <item name="android:windowTranslucentNavigation">true</item>
    </style>
    

    windowTranslucentStatus,当它被设置以后,system UI就会被自动的设置为SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN、SYSTEM_UI_FLAG_LAYOUT_STABLE,让应用的主体内容占用系统状态栏的空间

    android:windowTranslucentStatus FLAG_TRANSLUCENT_STATUS

    在代码中设置:

    if(Build.VERSION.SDK_INT>=19){
        getWindow().addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
    }
    

    布局文件:

    <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/main_content"
        android:layout_width="match_parent"
        android:layout_height="match_parent">
    
        <ImageView
            android:id="@+id/backdrop"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:scaleType="centerCrop"
            android:src="@drawable/ic_yd_1"/>
    
    </FrameLayout>
    
    API 21,半透明的状态栏 API 19,半透明的状态栏

    3、沉浸式 Immersive

    Immersive,也是在Android 4.4中引入的,它是Full Screen(隐藏状态栏、导航栏)的一种
    在Android 4.4以上,提供了两种Full Screen的方法:

    • Lean Back:点击屏幕的任何位置,显示System Bar
    • Immersive:从隐藏system bar的地方滑动,显示System Bar

    参考:
    android fullscreen#immersive
    materialsystem-bars

    主题文件

    <style name="AppTheme.ExtendStatusBar" parent="AppTheme">
        <item name="android:windowFullscreen">true</item>
    </style>
    

    在代码中可以通过调用setSystemUiVisibility()方法实现Immersive(在Android 4.4、5.X、6.X的实现方法是相同的),代码如下:

    @Override
    public void onWindowFocusChanged(boolean hasFocus) {
        super.onWindowFocusChanged(hasFocus);
        if(hasFocus && Build.VERSION.SDK_INT>=19){
            View decorView=getWindow().getDecorView();
            int option=View.SYSTEM_UI_FLAG_FULLSCREEN
                    | View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
                    | View.SYSTEM_UI_FLAG_IMMERSIVE
                    | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY ;
            decorView.setSystemUiVisibility(option);
        }
    }
    

    1、SYSTEM_UI_FLAG_FULLSCREEN :隐藏状态栏,手指从屏幕顶部向下拖拽,状态栏会再次出现,且不会消失;activity的界面会重新调整大小
    2、SYSTEM_UI_FLAG_HIDE_NAVIGATION :隐藏导航栏,activity的界面会重新调整大小
    3、 IMMERSIVE:沉浸模式
    4、SYSTEM_UI_FLAG_IMMERSIVE 、SYSTEM_UI_FLAG_IMMERSIVE_STICKY:实现Immersive的全屏效果,不是Lean Back的全屏效果,防止仅仅点击屏幕,System UI就出来了,是粘性的沉浸模式,状态栏和导航栏在显示一段时间后,会自动隐藏

    第一次,全屏时
    全屏,沉浸式,隐藏状态栏

    4、彩色状态栏,设置Status Bar的颜色

    在Android 5.0中,Status Bar的颜色标签是colorPrimaryDark,ToolBar的颜色标签为colorPrimary。
    或者在主题中进行配置:

    ** API 21 **

    <style name="AppTheme.ColorStatusBar" parent="AppTheme">
        <item name="android:statusBarColor">#245677</item>
        <item name="android:navigationBarColor">@color/colorAccent</item>
    </style>
    
    API 21,彩色状态栏 StatusBarColor

    </br>

    ** API 19 **

    但是,在API 19中没有statusBarColor这个属性,没办法设置其颜色

    使用第三方库,systembartint

    compile 'com.readystatesoftware.systembartint:systembartint:1.0.3'
    

    代码如下

    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT && Build.VERSION.SDK_INT < Build.VERSION_CODES.LOLLIPOP) {
        setTranslucentStatus(true);
        // create our manager instance after the content view is set
        SystemBarTintManager tintManager = new SystemBarTintManager(this);
        // enable status bar tint
        tintManager.setStatusBarTintEnabled(true);
        // set a custom tint color for all system bars
        tintManager.setStatusBarTintColor(Color.parseColor("#8df95f"));
    }
    
    
    @TargetApi(19)
    private void setTranslucentStatus(boolean on) {
        Window win = getWindow();
        WindowManager.LayoutParams winParams = win.getAttributes();
        final int bits = WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS;
        if (on) {
            winParams.flags |= bits;
        } else {
            winParams.flags &= ~bits;
        }
        win.setAttributes(winParams);
    }
    
    API 19,彩色状态栏

    </br></br>

    ** 总之 **

    1、透明/半透明状态栏、全屏,在API 19以上都可以实现,可能效果上会有差异;彩色状态栏在API 21以上才可以轻松的实现。

    2、android:fitsSystemWindows=“true” :当系统UI(状态栏、导航栏)可见的时候,通过在 View 上设置和系统UI一样高度的边框(padding ),来确保内容不会出现到系统窗口下面。

    3、View下的几个flag

    • LAYOUT_FULLSCREEN 、LAYOUT_STABLE:让应用的主体内容占用系统状态栏的空间,在使用windowTranslucentStatus、windowTranslucentNavigation时,这两者都会被调用,可以结合statusBarColor(API 21)实现透明状态栏。
    • FULLSCREEN、HIDE_NAVIGATION,可以实现隐藏状态栏和导航栏,在实现全屏效果时经常会用到,为了实现更真实的全屏,通常还要结合IMMERSIVE、IMMERSIVE_STICKY。

    </br>

    </br>
    参考:
    http://www.tuicool.com/articles/faA3MbJ
    https://www.zhihu.com/question/24908570
    http://www.tuicool.com/articles/QJFzMfY
    https://developer.android.com/training/system-ui/navigation.html#40
    https://developer.android.com/reference/android/R.attr.html#windowDrawsSystemBarBackgrounds
    http://www.jianshu.com/p/2ef52f357aa0

    https://www.youtube.com/watch?v=cBi8fjv90E4

    刨根问底-论Android“沉浸式”

    </br></br></br>

    相关文章

      网友评论

      本文标题:关于状态栏StatusBar(System UI)的各种操作..

      本文链接:https://www.haomeiwen.com/subject/msogsttx.html