//合并狀態(tài)欄
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的setContentView()方法執(zhí)行前,API版本在21以上晌畅,設(shè)置完成后會(huì)導(dǎo)致最上面的布局與狀態(tài)欄重疊但指,若要為狀態(tài)欄留空間,需要在對(duì)應(yīng)布局xml文件添加
android:fitSystemWindows='true'