phone 和平板电脑的应用程序
App for phone and tablet
我生成了一个测试应用程序并在 Play 商店中发布 (Google)。
但是在Play商店中寻找应用程序时,使用平板电脑,它没有出现!如果您使用 phone,则该应用程序可用。
- 在开发环境中,我可以运行在两个设备上使用相同的应用程序。
- google play for tablet (7 "and 10") 中请求的图像已按尺寸规格填充。
- 已添加到项目中,在 "Style" ANDROID 中,所有 "Views" 可用(3.5"、4"、5"、7" 和 10")
Play 商店或代码中是否有特定功能需要 "activated" 应用到平板电脑?
平板电脑需要做什么准备?
检查构建文件夹中的 android manifest.xml 文件。也许您只指定了小屏幕。
您应该 add/have 在您的清单文件中这样做:
<supports-screens
android:xlargeScreens="true"
android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:anyDensity="true"/>
如果你没有这个,你可以通过将它添加到你的项目文件夹中的清单模板来添加它。如果你有类似的东西,你应该尝试删除它。
我生成了一个测试应用程序并在 Play 商店中发布 (Google)。
但是在Play商店中寻找应用程序时,使用平板电脑,它没有出现!如果您使用 phone,则该应用程序可用。
- 在开发环境中,我可以运行在两个设备上使用相同的应用程序。
- google play for tablet (7 "and 10") 中请求的图像已按尺寸规格填充。
- 已添加到项目中,在 "Style" ANDROID 中,所有 "Views" 可用(3.5"、4"、5"、7" 和 10")
Play 商店或代码中是否有特定功能需要 "activated" 应用到平板电脑?
平板电脑需要做什么准备?
检查构建文件夹中的 android manifest.xml 文件。也许您只指定了小屏幕。
您应该 add/have 在您的清单文件中这样做:
<supports-screens
android:xlargeScreens="true"
android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:anyDensity="true"/>
如果你没有这个,你可以通过将它添加到你的项目文件夹中的清单模板来添加它。如果你有类似的东西,你应该尝试删除它。