如何指定应用程序适用于大屏幕设备

发布于 2024-11-19 14:05:47 字数 94 浏览 1 评论 0原文

我在 2.2 上开发了一个 android 应用程序,我想在 android 市场上发布它,但我的应用程序仅适用于大屏幕设备,所以有什么方法可以在发布应用程序时指定屏幕尺寸。

I have developed an android application on 2.2 and I want to release it in android market but my application is only for large screen device so is there any way that I can specify the screen size while publishing application.

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

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

发布评论

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

评论(2

断肠人 2024-11-26 14:05:47

将这段代码包含在您的 AndroidManifest 文件中:

<supports-screens android:smallScreens="false"
        android:normalScreens="false" android:largeScreens="true"
        android:anyDensity="true" />

这应该会有所帮助。

Include this chunk of code inside your AndroidManifest file:

<supports-screens android:smallScreens="false"
        android:normalScreens="false" android:largeScreens="true"
        android:anyDensity="true" />

This should help.

冷…雨湿花 2024-11-26 14:05:47

在android网站链接上找到了答案

Got the answer it is on android site link

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