gpt4 book ai didi

java - 如何过滤 Google Play,使应用仅显示在 7 英寸平板电脑上

转载 作者:行者123 更新时间:2023-11-30 11:29:37 24 4
gpt4 key购买 nike

我最近发布了一款仅支持 7-8.9 英寸屏幕(600dp 宽度)的应用。我以为我在 list 中应用了正确的标签来告诉 Google play 过滤掉其他设备。

在我使用的 AndroidManifest.xml 中:

支持屏幕 android:requiresSmallestWidthDp="600"android:largestWidthLimitDp="600"

然而事实证明,google play 不会使用标签“requiresSmallestWidthDp”进行过滤 http://developer.android.com/guide/topics/manifest/supports-screens-element.html

(尽管在这里使用它 http://developer.android.com/guide/practices/screens-distribution.html )

我如何过滤该应用,以便 Play 商店仅向兼容(7 - 8.9 英寸设备。或者最坏情况下仅 7 英寸设备)设备显示该应用?

我研究过使用兼容屏幕,但得出的结论是这些屏幕太宽泛了,7 英寸和 10 英寸的设备将归入相同的大屏幕尺寸范围,这对我来说毫无用处。

提前谢谢你

最佳答案

下面的 list 应该可以解决问题:

<compatible-screens>
<screen android:screenSize="large" android:screenDensity="mdpi" /> <!-- may not need this one-->
<screen android:screenSize="large" android:screenDensity="hdpi" />
<screen android:screenSize="large" android:screenDensity="xhdpi" />
</compatible-screens>

看来 requiresSmallestWidthDp 将来会支持过滤 Google Play 上的应用程序,但目前不支持:

Caution: The Android system does not pay attention to this attribute, so it does not affect how your application behaves at runtime. Instead, it is used to enable filtering for your application on services such as Google Play. However, Google Play currently does not support this attribute for filtering (on Android 3.2), so you should continue using the other size attributes if your application does not support small screens.

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

关于java - 如何过滤 Google Play,使应用仅显示在 7 英寸平板电脑上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18236878/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com