美文网首页
2018-12-06背景图与状态栏完美融合

2018-12-06背景图与状态栏完美融合

作者: Colin高宏杰 | 来源:发表于2018-12-06 22:20 被阅读0次

    activity中添加一下代码

    if (Build.VERSION.SDK_INT >=21) {

    View decorView = getWindow().getDecorView();

        decorView.setSystemUiVisibility(View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN | View.SYSTEM_UI_FLAG_LAYOUT_STABLE);

        getWindow().setStatusBarColor(Color.TRANSPARENT);

    }

    activity对应的xml下添加

    android:fitsSystemWindows="true"

    相关文章

      网友评论

          本文标题:2018-12-06背景图与状态栏完美融合

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