android状态栏沉浸效果(还没整理好,晚上整理)

一.修改样式文件:

1.增加values-v19文件夹,再其中的styles.xml中加上:

 


二.使用开源库

1.android studio中加入依赖:

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

 

2.在activity的onCreate()中调用下面方法:

 

   /**
     * Apply KitKat specific translucency.
     */
    private void applyKitKatTranslucency() {

        // KitKat translucent navigation/status bar.
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
            setTranslucentStatus(true);
            SystemBarTintManager mTintManager = new SystemBarTintManager(this);
            mTintManager.setStatusBarTintEnabled(true);
            mTintManager.setNavigationBarTintEnabled(true);
            // mTintManager.setTintColor(0xF00099CC);
            mTintManager.setTintDrawable(UIElementsHelper
                    .getGeneralActionBarBackground(this));

        }

    }

    @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);
    }

使用以上两个方法的最后,都要在主布局中加上:

 

 

android:fitsSystemWindows="true"

否则标题栏是白色的。




  1. if(VERSION.SDK_INT >= VERSION_CODES.KITKAT) {
  2.                                 //透明状态栏
  3.                                 getWindow().addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
  4.                                 //透明导航栏
  5.                                 getWindow().addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION);
  6.                         }
直接调用上面2行代码可以透明,但是你会发现你的 view 跑到 actionbar 上面去了,很明显 google 的意图是使你的 view 可以占据整个屏幕,然后 状态栏和导航栏 透明覆盖在上面很明显这样不可行。
那有没有办法使你的 view 保持原来大小呢?
有,你需要在这个 activity 的 layout xml 文件添加两个属性
  1.     android:layout_width="fill_parent"
  2.     android:layout_height="fill_parent"
  3.     android:gravity="center_horizontal"
  4.     
  5.     android:fitsSystemWindows="true"
  6.     android:clipToPadding="true"
  7.     
  8.     android:orientation="vertical" >
这样状态栏的背景就是你的 activity 的主背景,倘若actionbar 在,将会很难看,如图:

事实证明,google 并没有提供一个比较好的解决方案,他的 透明状态栏与导航栏的应用局限于,全屏阅读文字或玩游戏那种情景,


第二种方式, 是是设置 theme 属性

  1. android:theme="@android:style/Theme.DeviceDefault.Light.NoActionBar.TranslucentDecor"
  2.             android:theme="@android:style/Theme.Holo.Light.NoActionBar.TranslucentDecor"
  3.             android:theme="@android:style/Theme.Holo.NoActionBar.TranslucentDecor"
复制代码   如果你使用自定主题,只需在在 values-19 文件添加以下属性:
复制代码  
刚刚说了这个使用有局限性,不过好在有一个开源的东西
https://github.com/jgilfelt/SystemBarTint


使用这个开源库,必须开启透明标题栏

使用这个主题


或者在setContentView之前调用这个代码


  1. if(VERSION.SDK_INT >= VERSION_CODES.KITKAT) {
  2.                                 //透明状态栏
  3.                                 getWindow().addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
  4.                                 //透明导航栏
  5.                                 getWindow().addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION);

你可能感兴趣的:(Android开发)