您的位置:首页 > 移动开发 > Android开发

Android 在从全屏切换到非全屏的时候闪动问题

2016-05-04 00:49 627 查看
问题:

今天遇到了一个问题,从全屏的界面跳转到非全屏的界面的时候actionbar会有闪动挤压的情况

在实验后的到一下解决方案:

查阅了android官网 有如下 Window Flag

WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN

place the window within the entire screen, ignoring decorations around the border (such as the status bar).
将整个屏幕中的窗口,忽略周围边框装饰(如状态栏)

WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS

allow window to extend outside of the screen
让窗口外扩屏幕




android:paddingTop=”25dp”

In the onCreate of the activity, before the setContentView() add

getWindow().addFlags(WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN);

getWindow().addFlags(WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS);

就可解决!!!!
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息