亲宝软件园·资讯

展开

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

人气:0
想了解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);
// }
...
}

加载全部内容

相关教程
猜你喜欢
用户评论