android-Google Play中的手机和平板电脑过滤器

android-Google Play中的手机和平板电脑过滤器,第1张

概述我想为我的GooglePlay应用程序添加过滤器.我只想将我的应用程序仅显示在电话设备上,而不显示给平板电脑用户.因此,除了<screen-supports>之外,我可以放置哪种过滤器??手机,平板电脑或平板电脑是否有特定的过滤器?解决方法:声明一个应用程序仅适用于平板电脑;<supports-screens

我想为我的Google Play应用程序添加过滤器.
我只想将我的应用程序仅显示在电话设备上,而不显示给平板电脑用户.

因此,除了< screen-supports>之外,我可以放置哪种过滤器? ?
手机,平板电脑或平板电脑是否有特定的过滤器?

解决方法:

声明一个应用程序仅适用于平板电脑;

  <supports-screens androID:smallScreens="false"                       androID:normalScreens="false"                       androID:largeScreens="true"                       androID:xlargeScreens="true"                       androID:requiresSmallestWIDthDp="600" />

声明一个应用程序仅适用于手机

<compatible-screens>        <!-- all small size screens -->        <screen androID:screenSize="small" androID:screenDensity="ldpi" />        <screen androID:screenSize="small" androID:screenDensity="mdpi" />        <screen androID:screenSize="small" androID:screenDensity="hdpi" />        <screen androID:screenSize="small" androID:screenDensity="xhdpi" />        <!-- all normal size screens -->        <screen androID:screenSize="normal" androID:screenDensity="ldpi" />        <screen androID:screenSize="normal" androID:screenDensity="mdpi" />        <screen androID:screenSize="normal" androID:screenDensity="hdpi" />        <screen androID:screenSize="normal" androID:screenDensity="xhdpi" />    </compatible-screens>

详细信息:http://developer.android.com/guide/practices/screens-distribution.html#FilteringHandsetApps

编辑:
兼容屏幕中没有xxhdpi选择器,因此您可以使用;
片剂:

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

电话 :

<supports-screens androID:smallScreens="true"                     androID:normalScreens="true"                     androID:largeScreens="false"                     androID:xlargeScreens="false" />
总结

以上是内存溢出为你收集整理的android-Google Play中的手机和平板电脑过滤器全部内容,希望文章能够帮你解决android-Google Play中的手机和平板电脑过滤器所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://www.outofmemory.cn/web/1073026.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-26
下一篇 2022-05-26

发表评论

登录后才能评论

评论列表(0条)

保存