由于项目需求,需要将布局顶部放大状态栏的空间,类似这种
在网上搜索找到两种方法:
代码如下 | 复制代码 |
if(Build.VERSION.SDK_INT >=19){ WindowManager.LayoutParams localLayoutParams = mActivity.getWindow().getAttributes(); localLayoutParams.flags = (WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS | localLayoutParams.flags); if(fmMain !=null) { //fmMain:自定义的顶部导航条 LinearLayout.LayoutParams layoutParams = (LinearLayout.LayoutParams) fmMain.getLayoutParams(); layoutParams.setMargins(0, ChuangChuangApp.STATUSBARHEIGHT,0,0);//STATUSBARHEIGHT状态栏高度 fmMain.setLayoutParams(layoutParams); //设置顶部margin值 }
} |
一般情况下margin值是可以不用设置的,这里因人而异;然后可以将导航条的背景设置成透明就可以达到效果了
另外一种方法:
代码如下 | 复制代码 |
if(Build.VERSION.SDK_INT >=21) { View decorView = getWindow().getDecorView(); fmMain.setBackgroundColor(Color.TRANSPARENT); intoption = View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN | View.SYSTEM_UI_FLAG_LAYOUT_STABLE; decorView.setSystemUiVisibility(option); getWindow().setStatusBarColor(Color.TRANSPARENT); } |