通过从Google Play安装应用程序来应用屏幕限制

时间:2014-07-08 06:40:05

标签: android screen resolution

我开发了一款应用程序,其中我想要一个功能,如果屏幕尺寸低于3英寸,那么不应该从Google Play安装该应用程序。

那么我必须为此做些什么。 在此先感谢。

1 个答案:

答案 0 :(得分:3)

尝试在<support-screens>

中添加manifest.xml
<supports-screens android:resizeable=["true"| "false"]
              android:smallScreens=["true" | "false"]
              android:normalScreens=["true" | "false"]
              android:largeScreens=["true" | "false"]
              android:xlargeScreens=["true" | "false"]
              android:anyDensity=["true" | "false"]
              android:requiresSmallestWidthDp="integer"
              android:compatibleWidthLimitDp="integer"
              android:largestWidthLimitDp="integer"/>

转到Official Docs了解详情..

相关问题