1

如果手机旋转,是否有其他人体验过应用程序崩溃?我在三星 Galaxy 2 上运行 Android 4.0.3。

运行 Android 2.3.3 的 HTC 或三星不会出现此问题。

Eclipse 调试屏幕未显示任何错误。

我的应用程序是使用 PhoneGap 开发的。

旋转手机时记录:

05-25 13:38:09.155: I/GATE(20061): <GATE-M>DEV_ACTION_COMPLETED</GATE-M>
05-25 13:38:09.175: D/DroidGap(20061): Origin to allow: http://127.0.0.1*
05-25 13:38:09.175: I/CordovaLog(20061): Found log level DEBUG
05-25 13:38:09.175: I/CordovaLog(20061): Changing log level to DEBUG(3)
05-25 13:38:09.175: I/CordovaLog(20061): Found preference for classicRender
05-25 13:38:09.175: D/DroidGap(20061): DroidGap.onCreate()
05-25 13:38:09.180: D/DroidGap(20061): DroidGap.loadUrl(file:///android_asset/www/index.html)
05-25 13:38:09.180: D/DroidGap(20061): DroidGap: url=file:///android_asset/www/index.html baseUrl=file:///android_asset/www/
05-25 13:38:09.205: I/webclipboard(20061): clipservice: android.sec.clipboard.ClipboardExManager@4169fae8
05-25 13:38:09.210: D/DroidGap(20061): DroidGap.init()
05-25 13:38:09.260: D/PluginManager(20061): init()
05-25 13:38:09.280: D/WML_SISO(20061): InitPasteboardJni
05-25 13:38:09.280: D/SoftKeyboardDetect(20061): Ignore this event
05-25 13:38:09.730: W/IInputConnectionWrapper(20061): showStatusIcon on inactive InputConnection
05-25 13:38:09.790: I/GATE(20061): <GATE-M>DEV_ACTION_COMPLETED</GATE-M>
05-25 13:38:09.810: I/GATE(20061): <GATE-M>DEV_ACTION_COMPLETED</GATE-M>
4

2 回答 2

1

您需要添加screenSizeandroid:configChanges您的活动属性并至少针对 android-13 目标进行构建,因为该值是在 API 级别 13 中引入的。

于 2012-05-25T13:14:55.860 回答
0

您是否尝试添加: android:configChanges="orientation"

<activity android:name=".activityName"/>
于 2012-05-25T12:03:59.283 回答