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



我在Google Play上发布了一个应用程序,该应用程序适用于所有移动设备以及TAB 7和TAB 10,但对于三星而不是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:ScreenDenty =" XXHDPI",因为IM确定Samsung Note 3具有该屏幕密度

最新更新