Galaxy Tab のような多くのタブレットはlarge
、ではなく画面としてレポートしますxlarge
。したがって、タブレットをアプリの使用から除外すると、
<supports-screens
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:xlargeScreens="false"
/>
Play ストアで自分のアプリを表示できるタブレットがないということですか? Galaxy Tab や同様のデバイス ( large-hdpi
?
同じこと。タブレットアプリを作成し、タブレットでのみ使用して設定したい場合
<supports-screens
android:smallScreens="false"
android:normalScreens="false"
android:largeScreens="false"
android:xlargeScreens="true"
/>
Galaxy Tab または同様のデバイスでこのアプリを表示できますか?