Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/android/233.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/4/kotlin/3.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 为什么我的应用程序不能在GenyMotion emulator的xlarge分辨率上运行?_Android_Android Resources_Genymotion - Fatal编程技术网

Android 为什么我的应用程序不能在GenyMotion emulator的xlarge分辨率上运行?

Android 为什么我的应用程序不能在GenyMotion emulator的xlarge分辨率上运行?,android,android-resources,genymotion,Android,Android Resources,Genymotion,我正在尝试在GenyMotion Emulator或Custom平板电脑上运行我的应用程序,该平板电脑具有以下规格: 1536 x 1152尺寸 320dpi,即xhdpi 我有以下资源: 1.可拉拔式-sw720dp-land-xhdpi 2.布局图-sw720dp-land 3.1-sw720dp-land-xhdpi 我在mainifest文件中有以下代码: 我设计的应用程序可以处理从小到大的屏幕分辨率。我已经定制了我的模拟器,以便在平板电脑的mdpi、hdpi屏幕上工作,但是在使用xhd

我正在尝试在GenyMotion Emulator或Custom平板电脑上运行我的应用程序,该平板电脑具有以下规格:

1536 x 1152尺寸

320dpi,即xhdpi

我有以下资源:

1.可拉拔式-sw720dp-land-xhdpi

2.布局图-sw720dp-land

3.1-sw720dp-land-xhdpi

我在mainifest文件中有以下代码:


我设计的应用程序可以处理从小到大的屏幕分辨率。我已经定制了我的模拟器,以便在平板电脑的mdpi、hdpi屏幕上工作,但是在使用xhdpi的情况下,该应用程序不使用xhdpi资源。有人能告诉我发生了什么吗?

通过分辨率,您无法获得设备的实际尺寸,sw720用于10英寸平板电脑,sw600用于7英寸平板电脑

因此,您正在测试的表可能是7英寸平板电脑,因此它将使用sw600。
这可能会帮助您尝试将sw720dp更改为sw600dp。我也为sw600dp设计了,但我想测试它的sw720dp。平板电脑的尺寸是多少?sw600是为nexus 7英寸设计的,在哪种设备上进行测试?那个设备有多大?
 <supports-screens
    android:largeScreens="true"
    android:normalScreens="true"
    android:smallScreens="true"
    android:xlargeScreens="true" />