许多平板电脑(如 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 或类似设备都能看到这个应用程序吗?