zoukankan      html  css  js  c++  java
  • android 沉浸式状态栏

      搜了下,发现原来设置状态栏居然有个很高大上的名字(听不懂的都是高大上)——沉浸式状态栏,Android4.4以后开始支持沉浸式状态栏, 继续搜索,发现,有一个很简单的开源项目——SystemBarTint,可以很完美的支持沉浸式状态栏。

        SystemBarTint地址: https://github.com/hexiaochun/SystemBarTint


    应用 :
    compile 'com.readystatesoftware.systembartint:systembartint:1.0.4'



    只有在4.4 系统后才能有
    style
    <!-- 去掉tab顶部的黑边 -->
    <style name="no_title" parent="@android:style/Theme.Light.NoTitleBar">

    <!-- 沉浸式状态栏 -->
    <item name="android:fitsSystemWindows">true</item>
    <item name="android:clipToPadding">false</item>
    </style>


    在activity 中进行展示

    在baseActivity基类中 的setContent();
    后面要进行设置
     ViewGroup contentFrameLayout = (ViewGroup) findViewById(Window.ID_ANDROID_CONTENT);
            View parentView = contentFrameLayout.getChildAt(0);
            if (parentView != null && Build.VERSION.SDK_INT >= 14) {
                parentView.setFitsSystemWindows(true);
            }
    为给每个布局的基布局设置次属性
     
     

    /**
    * 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.setStatusBarTintResource(R.color.colorPrimary);//通知栏所需颜色
    }

    }

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







    另外还可以 看弘扬--> http://blog.csdn.net/lmj623565791/article/details/48649563

  • 相关阅读:
    java输入一个文件夹,查找出所有的文件列表
    java字节流到字符流的桥梁InputStreamReader,OutputStreamWriter
    java中获取用户输入字符,并将字符大写后显示
    mqtt
    tcpcopy
    lmax disruptor
    delete solr index
    http://book.douban.com/doulist/2545443/
    http://www.dottoro.com/
    最值得学习阅读的10个C语言开源项目代码
  • 原文地址:https://www.cnblogs.com/jeno-song/p/5604589.html
Copyright © 2011-2022 走看看