PhoneGap开发,应用横屏时程序退出
在你的html代码里是否有:
<meta name="viewport" content="width=device-width, initial-scale=1.0">。
在你的AndroidManifest.xml文件里是否有:
<supports-screens
android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:xlargeScreens="true"
android:resizeable="true"
android:anyDensity="true"
/>
或android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale"。

浙公网安备 33010602011771号