当前位置: 首页 > 知识库问答 >
问题:

我的应用程序在三星galaxy note 4的google play商店中不可见

湛光明
2023-03-14

我在google play store上发布了一个应用程序。这个程序是为手机设计的,我已经通过编辑清单文件中的兼容屏幕元素,使平板电脑不可见。

问题是,一些大屏幕(超过5英寸)的手机也无法在谷歌play store上“看到”我的应用程序。例如,我在play store中找不到三星galaxy note 4(5.7英寸,1440 x 2560像素,~515 ppi)的应用程序。

我应该如何设置兼容屏幕元素,以便能够准确地将手机和平板电脑分开?

<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" />
    <screen android:screenSize="normal" android:screenDensity="480" />
    <screen android:screenSize="normal" android:screenDensity="560" />
</compatible-screens>

当我第一次发布应用程序时,nexus 6也有同样的问题。但我通过添加以下行来修复它:

    <screen android:screenSize="normal" android:screenDensity="480" />
    <screen android:screenSize="normal" android:screenDensity="560" />

在那之后,我的应用程序可以用于nexus 6,但仍然不能用于平板电脑。我怎样才能让三星galaxy note 4也能看到它呢?

共有1个答案

曾鸿振
2023-03-14

为了支持三星Galaxy note 4,请在清单中添加给定的代码片段

 <compatible-screens>
    <screen
        android:screenDensity="640"
        android:screenSize="normal" />
</compatible-screens>

此外,至少提供一个xxxhdpi应用程序图标,因为设备可以在启动器上显示大的应用程序图标。

 类似资料: