Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/cassandra/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 为什么我的应用程序不支持三星Galaxy Note 3_Android_Google Play_Apk_Samsung Mobile - Fatal编程技术网

Android 为什么我的应用程序不支持三星Galaxy Note 3

Android 为什么我的应用程序不支持三星Galaxy Note 3,android,google-play,apk,samsung-mobile,Android,Google Play,Apk,Samsung Mobile,我在google play上发布了一个应用程序,该应用程序适用于所有移动设备和Tab 7和Tab 10,但对于三星(Samsung)和Tab 3,它不可见 以下是清单文件: <supports-screens android:resizeable="true" android:smallScreens="true" android:normalScreens="true" andr

我在google play上发布了一个应用程序,该应用程序适用于所有移动设备和Tab 7和Tab 10,但对于三星(Samsung)和Tab 3,它不可见

以下是清单文件:

<supports-screens android:resizeable="true"
                  android:smallScreens="true" 
                  android:normalScreens="true"
                  android:largeScreens="true"
                  android:xlargeScreens="true"
                  android:anyDensity="true"/>
<compatible-screens>
    <!-- all small size screens -->
    <screen android:screenSize="small" android:screenDensity="ldpi" />
    <screen android:screenSize="small" android:screenDensity="mdpi" />
    <screen android:screenSize="small" android:screenDensity="hdpi" />
    <screen android:screenSize="small" android:screenDensity="xhdpi" />
    <!-- all normal size screens -->
    <screen android:screenSize="normal" android:screenDensity="ldpi" />
    <screen android:screenSize="normal" android:screenDensity="mdpi" />
    <screen android:screenSize="normal" android:screenDensity="hdpi" />
    <screen android:screenSize="normal" android:screenDensity="xhdpi" />
    <!-- all large size screens -->
    <screen android:screenSize="large" android:screenDensity="ldpi" />
    <screen android:screenSize="large" android:screenDensity="mdpi" />
    <screen android:screenSize="large" android:screenDensity="hdpi" />
    <screen android:screenSize="large" android:screenDensity="xhdpi" />

</compatible-screens>

<uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="19" /> 

如果我加上这行,你觉得行吗

<screen android:screenSize="large" android:screenDensity="480"/>    


你应该在你的屏幕密度中包括android:screenDensity=“xxhdpi”,因为我肯定三星Note 3有这样的屏幕密度

为什么你要手动列出所有这些?你是故意不支持xxhdpi吗?因为没有它它它就不能工作,所以我试着把它放进去,但仍然不能工作。但它已经是android:anyDensity=“true”,对“xxhdpi”是这样吗?是的,但会超越它。我认为你不需要所有这些,只要删除它们,包括支持屏幕,然后再试一次