2

我已经上传了我的游戏,目前支持两种分辨率 1280x800 和 1280x720。现在我在清单中设置了下面

<supports-screens
        android:xlargeScreens="true"
        android:requiresSmallestWidthDp="600"
         />

       <compatible-screens>
        <!-- all small size screens -->
        <screen android:screenSize="normal" android:screenDensity="hdpi" />
        <!-- all normal size screens -->
        <screen android:screenSize="xlarge" android:screenDensity="mdpi" />

    </compatible-screens>

但我的应用程序仍然显示在 Galaxy 10 中,但不在 Galaxy s3 中。

我参考了 http://developer.android.com/guide/practices/screens_support.html#DeclaringTabletLayouts

720dp: a 10” tablet (720x1280 mdpi, 800x1280 mdpi, etc).

请让我知道我在哪里犯了错误。

4

1 回答 1

2

安卓:大屏幕=[“真”| "false"] 在清单文件中将此设置为 true

http://developer.android.com/guide/topics/manifest/supports-screens-element.html

三星 Galaxy s3 采用大屏幕。我猜屏幕尺寸是 4.​​8 英寸。

http://developer.android.com/guide/practices/screens_support.html#DensityConsiderations

于 2013-05-01T12:16:17.130 回答