0

私は使っている、

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

私は android:requiresSmallestWidthDp="600" についてもっと心配しています

私のアプリは Nexus 7 タブレットに表示されますか?

4

2 に答える 2

0

Best way to find out is to test it on an actual device or in the Eclipse AVD.

The docs say...

in order for a device to be considered compatible with your application, the device's smallestWidth must be equal to or greater than this value. (Usually, the value you supply for this is the "smallest width" that your layout supports, regardless of the screen's current orientation.)

For example, a typical handset screen has a smallestWidth of 320dp, a 7" tablet has a smallestWidth of 600dp, and a 10" tablet has a smallestWidth of 720dp. These values are generally the smallestWidth because they are the shortest dimension of the screen's available space.

As it states above, the smallestWidth of a 7" tablet is 600dp so I think your settings should work but the golden rule is to test it, both in the Eclipse Android Virtual Device and in an actual device.

Setup an AVD with Nexus 7 (7.27", 800 x 1280:tvdpi) as the device and see how it goes.

于 2013-02-22T03:52:26.667 に答える
0

AndroidManifest.xml に supports-screens タグを追加した後、発行元の Web サイトで Nexus7 を選択し、他のすべてのデバイスのチェックを外すことができました。

于 2013-02-22T06:35:39.270 に答える