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

就可解决!!!!

更多相关文章

  1. 终于找到一个类似wince 远程桌面控制android设备的软件——Andro
  2. AndroidManifest.xml 不同变量的作用(持续更新)
  3. 我的Android之旅——UI界面六大布局之认识布局(一)
  4. Android中main.xml界面参数笔记
  5. 如何将一个Activity设置成窗口的样式
  6. android UI设计之 背景透明色 项目资源文件关系
  7. Android中欢迎界面背景图片放大效果
  8. Android(安卓)支持多屏幕机制
  9. Android开发之屏幕属性

随机推荐

  1. Android电视关闭的动画效果
  2. TextView水平剧中
  3. Android常用控件之RatingBar的使用
  4. Android内容提供者ContentProvider用法实
  5. Android UI开发第六篇――仿QQ的滑动Tab
  6. Android实现自动填写获取验证码功能
  7. 【Android】【动画】自定义Animation
  8. android 使用LocationManger一定位就掉星
  9. armeabi和armeabi-v7a
  10. Android(安卓)监听Home键