Android Studio / Eclipse - 将屏幕分辨率限制在最低720x1280

时间:2014-11-28 18:22:00

标签: android eclipse android-studio screen resolution

我正在编写一个Cordova应用程序,我的CSS已经过优化,屏幕分辨率高于720x1280。我想禁止使用400x800 / 480x800的手机。

android:requiresSmallestWidthDp="720"

将上述行放入我的清单中是否有正确的方法?

1 个答案:

答案 0 :(得分:0)

Google Play does not use this attribute,因此您应该在AndroidManifest.xml中使用supports-screens属性,如下所示:

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

More info here