android status android图库竖屏不显示status bar的解决办法

软件发布|下载排行|最新软件

当前位置:首页IT学院IT技术

android status android图库竖屏不显示status bar的解决办法

  2021-03-18 我要评论
想了解android图库竖屏不显示status bar的解决办法的相关内容吗,在本文为您仔细讲解android status的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:android,status,竖屏,下面大家一起来学习吧。
图库在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);
// }
...
}

猜您喜欢

Copyright 2022 版权所有 软件发布 访问手机版

声明:所有软件和文章来自软件开发商或者作者 如有异议 请与本站联系 联系我们