阻止平板电脑下载应用程序

发布于 2024-11-05 07:44:34 字数 260 浏览 1 评论 0原文

我最近在 Android Market 上查看了我的一款应用程序的详细情况,并惊讶地发现许多下载者正在使用 Galaxy Tab 和其他一些平板电脑来使用我的应用程序。 现在,我有点担心,因为在设计应用程序时,我没有考虑到更大的屏幕尺寸,所以我在画布上使用的位图都适合手机尺寸,但对于平板电脑来说太小了(我是想到背景位图将覆盖大约 1/4 的 Galaxy Tab 屏幕,想到人们这样使用我的应用程序,我感到有点不安。 所以我的问题是,有没有办法阻止平板电脑下载应用程序?我猜不是,但我只是想确定一下。

I have recently been looking at the breakdown of one of my apps on ANdroid Market, and was surprised to see that a number of downloaders were using Galaxy Tabs and a few other tablets to use my app.
Now, I'm a little worried, because when designing the app I didn't take into account larger screen sizes, so the bitmaps I used on the Canvas are all suitable for phone sizes but are way too small for tablets (I'm thinking of the background bitmaps which will cover about 1/4 of the Galaxy Tab's screen. The thought of people using my app like this is making me feel a little unnerved.
So my question is, is there a way to prevent Tablet PCs from downloading an app? I'm guessing not, but I just wanted to make sure.

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

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

发布评论

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

评论(3

我爱人 2024-11-12 07:44:34
<supports-screens
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:xlargeScreens="false"/>

但我怀疑它会阻止您的应用程序在 Galaxy Tab 上运行,但您可以尝试一下

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

But I suspect that it will prevent your app to run on Galaxy Tab but you can gave it a try

荭秂 2024-11-12 07:44:34

例如,您可以使用 <兼容屏幕> 元素来阻止具有超大屏幕的设备在 Google Play 中看到您的应用。

http://developer.android.com/guide/topics/manifest /兼容屏幕-element.html

You can use the <compatible-screens> element to prevent, for example, devices with x-large screens from seeing your app in Google Play.

http://developer.android.com/guide/topics/manifest/compatible-screens-element.html

往事风中埋 2024-11-12 07:44:34

这个问题最近经常出现,并且似乎您无法阻止人们根据设备类型下载和安装您的应用程序。

您可以尝试的几件事是:

  1. 为更高清晰度的设备创建一组额外的图像
  2. 检查初始应用程序运行时的分辨率,并告诉他们不支持他们的设备(并退出)或警告他们它可能看起来不太好。

This question has been going around a lot recently and it seems that you cannot stop people from downloading and installing your app based on their device-type.

A couple things you can try are:

  1. Create an extra set of images for the higher def devices
  2. Check the resolution on initial app run and either tell them that their device is not supported (and exit) or warn them that it may not look so good.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文