银河兆丰与其他Phablets和Android清单 [英] Galaxy Mega vs. other Phablets and Android Manifest

查看:101
本文介绍了银河兆丰与其他Phablets和Android清单的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

对于我的应用程序的清单项目如下 -

The manifest entries for my application are as follows -

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

<compatible-screens>

    <!-- small size screens -->
    <screen
            android:screenDensity="ldpi"
            android:screenSize="small" />
    <screen
            android:screenDensity="mdpi"
            android:screenSize="small" />
    <screen
            android:screenDensity="hdpi"
            android:screenSize="small" />
    <screen
            android:screenDensity="xhdpi"
            android:screenSize="small" />
    <screen
            android:screenDensity="480"
            android:screenSize="small" />

    <!-- all normal size screens -->
    <screen
            android:screenDensity="ldpi"
            android:screenSize="normal" />
    <screen
            android:screenDensity="mdpi"
            android:screenSize="normal" />
    <screen
            android:screenDensity="hdpi"
            android:screenSize="normal" />
    <screen
            android:screenDensity="xhdpi"
            android:screenSize="normal" />
    <screen
            android:screenDensity="480"
            android:screenSize="normal" />

</compatible-screens>

当我上传的应用程序,以谷歌Play商店,从下面的列表中的前两个设备(银河兆丰)被自动过滤掉。他们下面的类似设备则没有。

When I uploaded the app to Google Play store, the first two devices from the list below (Galaxy Mega) were automatically filtered out. The similar devices below them were not.

三星Galaxy米加6.3 尺寸 - 6.3分辨率 - 720x1280 DPI - 233

Samsung Galaxy Mega 6.3 Size - 6.3 Resolution - 720x1280 DPI - 233

三星Galaxy米加5.8 尺寸 - 5.8分辨率 - 540x960 DPI - 190

Samsung Galaxy Mega 5.8 Size - 5.8 Resolution - 540x960 DPI - 190

的HTC One最大 尺寸 - 5.9分辨率 - 1080x1920 DPI - 373

HTC One Max Size - 5.9 Resolution - 1080x1920 DPI - 373

三星Galaxy Note 3 尺寸 - 5.7分辨率 - 1080x1920 DPI - 386

Samsung Galaxy Note 3 Size - 5.7 Resolution - 1080x1920 DPI - 386

三星Galaxy回合 尺寸 - 5.7分辨率 - 1080x1920 DPI - 386

Samsung Galaxy Round Size - 5.7 Resolution - 1080x1920 DPI - 386

三星Galaxy Note II 尺寸 - 5.5分辨率 - 720x1280 DPI - 267

Samsung Galaxy Note II Size - 5.5 Resolution - 720x1280 DPI - 267

没有人有一个了解为什么开发者控制台将区别对待这两个星系兆设备?

Does anyone have an insight into why Developer Console would treat the two Galaxy Mega devices differently?

推荐答案

我猜想,三星Galaxy米加6.3 belogs一个机器人:屏幕尺寸=大的范畴,因此,它被过滤掉你的配置

I would guess that Samsung Galaxy Mega 6.3 belogs to a android:screenSize="large" category, therefore it gets filtered out by your config.

尝试添加

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

如果它不工作,尝试还设置密度MDPI或tvdpi(213)

if it does not work try also setting density to mdpi or tvdpi(213)

这篇关于银河兆丰与其他Phablets和Android清单的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆