Phone Gap 应用程序在横向模式下崩溃

发布于 2024-12-26 07:45:54 字数 184 浏览 0 评论 0原文

我使用phonegap 1.3 和jquery mobile 构建了一个应用程序。我遇到的问题是,当我旋转设备(HTC Desire HD)上的屏幕时,它会强制关闭应用程序。

我正在使用 Phonegap 网站上的设置说明。

有谁知道这个问题的修复方法吗,因为我已经尝试过摆弄它,但仍然没有改变。

非常感谢

I have built an app using phonegap 1.3 and jquery mobile. The problem that i am having is when I rotate the screen on my device (HTC Desire HD) it force closes the app.

I am using the setup instructions found on the Phonegap website.

Does anyone know of a fix for this please as I have tried fiddling with it but still to no change.

Many Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

因为看清所以看轻 2025-01-02 07:45:54

我认为将 Manifest.xml 中的活动更改为此会对您有所帮助

<activity
            android:label="@string/app_name"
            android:name=".App" 
            android:configChanges="orientation|keyboardHidden">
            <intent-filter >
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
</activity>
<activity android:name="com.phonegap.DroidGap" android:label="@string/app_name" android:configChanges="orientation|keyboardHidden">
             <intent-filter> 
                 </intent-filter> 
</activity>

I think changing your activity in Manifest.xml to this will help you

<activity
            android:label="@string/app_name"
            android:name=".App" 
            android:configChanges="orientation|keyboardHidden">
            <intent-filter >
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
</activity>
<activity android:name="com.phonegap.DroidGap" android:label="@string/app_name" android:configChanges="orientation|keyboardHidden">
             <intent-filter> 
                 </intent-filter> 
</activity>
岁月打碎记忆 2025-01-02 07:45:54

在 AndroidManifest.xml 中,将配置属性设置为:

android:configChanges="orientation|screenSize|keyboardHidden" 

在两个活动中。

In you AndroidManifest.xml as for the configuration attribute set it to:

android:configChanges="orientation|screenSize|keyboardHidden" 

In both activities.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文