Android 应用程序 - 拒绝亚马逊应用程序市场滑块中断

发布于 2024-11-01 00:54:52 字数 376 浏览 1 评论 0原文

您好,刚刚尝试将应用程序上传到亚马逊市场,但该应用程序已被撤销,并显示以下消息:

操作系统版本:[2.2] 设备/外形尺寸:

[摩托罗拉 Droid 2]

错误描述:滑块中断问题

因此,这表示:

Android 2.2 a Motorola Droid 2

但问题是,有没有人有关于“滑块中断”的官方措辞,这是否意味着屏幕向上移动以显示键盘?

我想如果我设置 android:orientation="portrait" 应用程序会忽略幻灯片。 Droid 2 上有什么不同吗?

Hi just tried uploading an app to the amazon market, it was revoked with this message:

OS Version: [2.2] Device/Form Factor:

[Motorola Droid 2]

Bug Description: Slider Interruption issue

So this says:

Android 2.2 on a Motorola Droid 2

But question is, does anyone have official wording on 'Slider Interruption', does this mean when the screen is moved up to show the keyboard?

I though if I set android:orientation="portrait" the app would ignore the slide. Is it different on the Droid 2?

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

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

发布评论

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

评论(3

烟─花易冷 2024-11-08 00:54:52

向亚马逊寻求澄清。我和他们的经历非常糟糕。我的应用程序被拒绝,并显示以下消息。

应用程序在启动时崩溃,并出现以下错误:“抱歉!应用程序电池(进程 com.incorporateapps.battery)已意外停止。请重试。”重现步骤: 1. 从 Amazon App store 下载应用程序。 2. 启动应用程序。 3. 验证应用程序是否崩溃并显示上述错误消息。 alogcat 输出表明您的应用程序缺少其应用程序标识符。我们无法弄清楚为什么会丢失此内容。

令人惊讶的是,那不是我的应用程序。他们没有提供堆栈跟踪。当我联系他们寻求澄清时,我被告知有人会联系我告知真正原因,但没有收到任何回复。

Ask Amazon for clarification. My experience with them has been horrible. My app was denied, with the following message.

The application crashes upon launch with the following error: "Sorry! The application Battery (process com.incorporateapps.battery) has stopped unexpectedly. Please try again." Steps to reproduce: 1. Download the application from the Amazon App store. 2. Launch the application. 3. Verify the application crashes with the error message above. alogcat output indicated that your app was missing its application identifier. We were unable to figure out why this would be missing.

Surprisingly, that is not my app. They did not provide a stack trace. When I contacted them for clarification I was told someone would contact me with the real reason, but have not heard anything back.

霊感 2024-11-08 00:54:52

我刚刚注意到您的问题中有 android:orientation="portrait" 。确保您的清单中的活动声明实际上具有 android:screenOrientation="portrait"

android:orientation 和 android:screenOrientation 很容易混淆。一个锁定屏幕方向,另一个仅由 UI 小部件用于设计目的。

I just noticed you have android:orientation="portrait" in your question. Make sure in your manifest in the activity declaration actually has android:screenOrientation="portrait".

android:orientation and android:screenOrientation are easily confused. One locks the screen orientation and the other is just used by an UI widget for design purposes.

纸伞微斜 2024-11-08 00:54:52

“滑块中断” - 确实表示屏幕向上移动以显示键盘时

这将导致 Activity 进入 onPause onStop,在某些手机上甚至进入 onDestroy,然后进入 onCreate / onStart onResume

'Slider Interruption' - does mean when the screen is moved up to show the keyboard

this will cause the activity to go into onPause onStop and on somephones even onDestroy then onCreate / onStart onResume

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