zoukankan      html  css  js  c++  java
  • Android4: 旋转屏幕时禁止Activity重启

    http://blog.csdn.net/zmyde2010/article/details/7030979

    我们知道,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).
  • 相关阅读:
    迭代和列表生成式
    python递归函数
    python函数
    变量
    python第八课后整理
    python第八课
    python第七课
    python第六课
    python第五课
    微信端/企业微信端H5页面调试方法
  • 原文地址:https://www.cnblogs.com/eustoma/p/2415797.html
Copyright © 2011-2022 走看看