Android状态栏微技巧(推荐)
下面一段代码给大家介绍Android状态栏微技巧,代码比较简短,但是它的微技巧都表达出来了,一起通过代码学习吧。 @Override public void onWindowFocusChanged(boolean hasFocus) { super.onWindowFocusChanged(hasFocus); if (hasFocus && Build.VERSION.SDK_INT >= 19) { View decorView = getWindow().getDecorView(); decorView.setSystemUiVisibility( View.SYSTEM_UI_F
下载地址
用户评论