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

问题:
今天遇到了一个问题,从全屏的界面跳转到非全屏的界面的时候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);

就可解决!!!!

你可能感兴趣的:(android)