1

私の AndroidManifest.xml には、サポートされている画面に関する次のセクションがあります。

    <compatible-screens>

        <!-- small devices, all densities -->
        <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" />

        <!-- average devices, all densities -->
        <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" />

         <!-- larger devices, all densities -->
         <screen android:screenDensity="ldpi" android:screenSize="large" />
         <screen android:screenDensity="mdpi" android:screenSize="large" />
         <screen android:screenDensity="hdpi" android:screenSize="large" />
         <screen android:screenDensity="xhdpi" android:screenSize="large" />

         <!-- tablets/extra large devices, all densities -->
         <screen android:screenDensity="ldpi" android:screenSize="xlarge" />
         <screen android:screenDensity="mdpi" android:screenSize="xlarge" />
         <screen android:screenDensity="hdpi" android:screenSize="xlarge" />
         <screen android:screenDensity="xhdpi" android:screenSize="xlarge" />

   </compatible-screens>

Google Developer Console では、Sony Xperia Z2 と Samsung Galaxy は「サポートされていません」とマークされています。どうすればいいの?基本的に、特大サイズまでのすべての画面サイズをカバーしました。Android 開発者ガイド ( http://developer.android.com/guide/practices/screens_support.html ) の表 3 によると、Sony Xperia (1980x1020 @ 423ppi) と Samsung Galaxy S4 (1980x1020 @ 441ppi) は特大サイズになります。 /xhdpi、密度は確かに表の値を超えていますが. 私が認識していない高密度修飾子はありますか? PlayStore がこれらのデバイスを除外しなければならない他の理由は何ですか?

私はしばらくの間これを理解しようとしてきましたが、どんな助けも大歓迎です。

4

1 に答える 1

3

これらのデバイスはxxhdpi、除外したデバイスです。

于 2014-07-08T19:00:43.347 に答える