- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我最近发布了一款仅支持 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/
我的应用程序中有两个 Activity 。第一个 Activity 启动模式是 singleInstance,第二个 Activity 启动模式是 singleTask。我正在使用这些启动模式,因为我
据热心网友投稿,小米小爱触屏音箱Pro 8外观曝光,可以看到触控屏幕尺寸比较大,像是在音箱上“长”了一个平板。 从曝光的信息来看,小米小爱触屏音箱Pro 8具有白色的配色设计,下方有一个长
我有一张 table ,看起来像, VisitorId date deviceType 1 2018-12-11 mobile 2
今天下午,小米官方公布了小爱触屏音箱Pro 8,可以看到触控屏幕尺寸比较大,音箱上“长”了一个平板。据悉,小米小爱触屏音箱Pro 8具有白色的配色设计,下方有一个长条状的扬声器,上方带有一个尺寸比较
有没有办法检测是否使用手持浏览器(iOS/Android 手机/平板电脑)? 我尝试这样做的目的是让手持设备上的浏览器中的元素宽度减半,但这并没有什么不同。 width: 600px; @media
目前,Google Analytics for web 公开了一个设备类别字段,其离散值为mobile、tablet 和desktop。该界面还允许您更深入地了解它的具体设备。我想 Google 有某
我是一名优秀的程序员,十分优秀!