android图库竖屏不显示status bar怎么办
来源:爱站网时间:2020-12-07编辑:网友分享
我们在使用android图库的时候发现竖屏不显示status bar,那么android图库竖屏不显示status bar怎么办呢?我们要怎么解决?下面我们就一起去看看具体的解决方法吧。
我们在使用android图库的时候发现竖屏不显示status bar,那么android图库竖屏不显示status bar怎么办呢?我们要怎么解决?下面我们就一起去看看具体的解决方法吧。
图库在JB和JB2的版本上显示的行为是:横屏全屏显示,竖屏会显示status bar。如何使竖屏也不显示status bar。
修改alps/packages/apps/Gallery2/src/com/android/gallery3d/app/AbstractGalleryActivity.java中toggleStatusBarByOrientation() 方法:
private void toggleStatusBarByOrientation() {
if (mDisableToggleStatusBar) return;
Window win = getWindow();
win.addFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN);
// if (getResources().getConfiguration().orientation == Configuration.ORIENTATION_PORTRAIT) {
// win.clearFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN);
// } else {
// win.addFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN);
// }
...
}
上文就是小编为大家介绍android图库竖屏不显示status bar怎么办的内容, 人生就是一个不断学习的过程,在这个过程中爱站技术频道就是大家的帮手,我们看在爱站网学习到很多有趣的知识。