支持多屏幕,无需智能手机

时间:2012-05-08 22:12:38

标签: android android-compatibility android-screen-support

我已经阅读了http://developer.android.com/guide/practices/screens_support.html

我的问题是,如何仅针对Galaxy Tab 7.0(Android 2.2)或更高版本过滤Google Play?

<uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="11" />

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

我实际上是这样做的,但看起来像Galaxy S2或XPeria Arc这样的好手机有“大”屏幕,所以这个应用程序也可以用于那些。我该如何过滤?

1 个答案:

答案 0 :(得分:2)

上传到Google Play后,您可以手动过滤掉您不支持的额外设备。

link有关于此主题的额外信息。