我们知道,Andorid旋转屏幕时默认是重新Create Activity,之前我们可以 在AndroidManifest.xml 中添加activity属性android:configChanges="orientation" 来声明Acitivity自己处理orientaion,这样就不会重新Create Activity
在 ics中需要改为android:configChanges="orientation|screenSize"
Caution: Beginning with Android 3.2 (API level 13), the "screen size" also changes when the device switches between portrait and landscape orientation. Thus, if you want to prevent runtime restarts due to orientation change when developing for API level 13 or higher (as declared by the minSdkVersion and targetSdkVersion attributes), you must include the "screenSize" value in addition to the "orientation" value. That is, you must decalare android:configChanges="orientation|screenSize". However, if your application targets API level 12 or lower, then your activity always handles this configuration change itself (this configuration change does not restart your activity, even when running on an Android 3.2 or higher device).

更多相关文章

  1. Android(安卓)ImageView的scaleType属性与adjustViewBounds属性
  2. 动态修改Android参数信息的方法绕过改机检测
  3. ScrollView属性fillViewport解决android布局不能撑满全屏的问题
  4. Android属性之build.prop,及property_get/property_set
  5. 关于自定义布局,xml中配置属性(attrs)
  6. Qt for Android(安卓)程序禁止屏幕旋转
  7. 【Android】旋转
  8. 大家网Android开发规范
  9. Android(安卓)build.prop生成过程

随机推荐

  1. android菜鸟学习笔记12----Android控件(
  2. Android的第二个应用---电话拨号器
  3. android颜色对应的xml配置值,颜色表
  4. android弹出框2(相当于通知)
  5. android线性布局LinerLayout
  6. Android开发秘籍学习笔记(五)
  7. android animation中的参数interpolator
  8. Visual Studio 2010 也能开发Android(安
  9. Android(安卓)Camera 找来找去还是觉得ap
  10. android http连接超时处理