android 全透明状态栏

来源:互联网 发布:linux如何查看时间 编辑:程序博客网 时间:2024/04/30 15:41

取消 actionbar 阴影,appcompat ,

theme 添加

<item name="android:windowContentOverlay">@null</item>

getSupportActionBar().setElevation(0);


透明状态栏

        if(Build.VERSION.SDK_INT > 16) {            getWindow().getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_LAYOUT_STABLE                    |View.SYSTEM_UI_LAYOUT_FLAGS|View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN                    |View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION);            getWindow().getDecorView().setFitsSystemWindows(true);        }


0 0
原创粉丝点击