Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/android/178.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/delphi/9.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/6/multithreading/4.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Android 适用于手机和平板电脑的应用程序_Android_Delphi_Google Play_Tablet_Delphi Xe7 - Fatal编程技术网

Android 适用于手机和平板电脑的应用程序

Android 适用于手机和平板电脑的应用程序,android,delphi,google-play,tablet,delphi-xe7,Android,Delphi,Google Play,Tablet,Delphi Xe7,我生成了一个测试应用程序,并在Play Store(谷歌)上发布 但在Play Store中使用平板电脑查找应用程序时,它不会出现!如果使用手机,应用程序将显示为可用 在开发环境中,我可以在两个设备上运行相同的应用程序 google play for tablet(7英寸和10英寸)中要求的图像按照尺寸规格填充 已经添加到项目中,在“风格”ANDROID中,所有可用的“视图”(3.5、4、5、7和10) Play Store或平板电脑应用程序中需要“激活”的代码中是否有特定功能 为平板电脑提

我生成了一个测试应用程序,并在Play Store(谷歌)上发布

但在Play Store中使用平板电脑查找应用程序时,它不会出现!如果使用手机,应用程序将显示为可用

  • 在开发环境中,我可以在两个设备上运行相同的应用程序
  • google play for tablet(7英寸和10英寸)中要求的图像按照尺寸规格填充
  • 已经添加到项目中,在“风格”ANDROID中,所有可用的“视图”(3.5、4、5、7和10)
Play Store或平板电脑应用程序中需要“激活”的代码中是否有特定功能


为平板电脑提供哪些功能?

检查构建文件夹中的android manifest.xml文件。可能您只指定了小屏幕

您应该在清单文件中添加/保留以下内容:

<supports-screens
      android:xlargeScreens="true"
      android:largeScreens="true"
      android:normalScreens="true"
      android:smallScreens="true"
      android:anyDensity="true"/>


如果您没有此功能,则可以通过将其添加到项目文件夹中的清单模板来添加。如果您有类似的功能,则应尝试删除该功能。

应用程序是否需要电话功能?请参阅和