Last active
September 7, 2015 04:02
-
-
Save zhfnjust/203af5b6fdced9de0602 to your computer and use it in GitHub Desktop.
设置标题栏透明度
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//设置标题栏透明度 | |
Window window = getWindow(); | |
if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) { | |
window.clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS | |
| WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION); | |
window.getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN | |
| View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION | |
| View.SYSTEM_UI_FLAG_LAYOUT_STABLE); | |
window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS); | |
window.setStatusBarColor(getResources().getColor(R.color.green)); | |
window.setNavigationBarColor(Color.TRANSPARENT); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment