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

来源:互联网 发布:c 11 并行编程 编辑:程序博客网 时间:2024/06/15 13:36

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

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

查阅了android官网 有如下 Window Flag

WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREENplace the window within the entire screen, ignoring decorations around the border (such as the status bar).将整个屏幕中的窗口,忽略周围边框装饰(如状态栏)WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITSallow 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);

就可解决!!!!

0 1