Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3099d2a9 authored by Andrew Solovay's avatar Andrew Solovay
Browse files

docs: Noted several new supported screen resolutions.

See first comment for doc stage location.

bug: 24351061
Change-Id: I1a2d7133129dc9a0cc6cdbdc69ca1a7a006c8913
parent e684adc2
Loading
Loading
Loading
Loading
+11 −8
Original line number Diff line number Diff line
@@ -9,7 +9,8 @@ parent.link=manifest-intro.html
<pre>
&lt;<a href="#compatible-screens">compatible-screens</a>&gt;
    &lt;<a href="#screen">screen</a> android:<a href="#screenSize">screenSize</a>=["small" | "normal" | "large" | "xlarge"]
            android:<a href="#screenDensity">screenDensity</a>=["ldpi" | "mdpi" | "hdpi" | "xhdpi"] /&gt;
            android:<a href="#screenDensity">screenDensity</a>=["ldpi" | "mdpi" | "hdpi" | "xhdpi"
                                   | "280" | "360" | "420" | "480" | "560" ] /&gt;
    ...
&lt;/compatible-screens&gt;
</pre>
@@ -90,14 +91,16 @@ href="{@docRoot}guide/practices/screens_support.html#range">Supporting Multiple
        <dd><b>Required.</b> Specifies the screen density for this screen configuration.
          <p>Accepted values:</p>
          <ul>
            <li>{@code ldpi}</li>
            <li>{@code mdpi}</li>
            <li>{@code hdpi}</li>
            <li>{@code xhdpi}</li>
            <li>{@code "ldpi"} (approximately 120 dpi)</li>
            <li>{@code "mdpi"} (approximately 160 dpi)</li>
            <li>{@code "hdpi"} (approximately 240 dpi)</li>
            <li>{@code "xhdpi"} (approximately 320 dpi)</li>
            <li>{@code "280"}</li>
            <li>{@code "360"}</li>
            <li>{@code "420"}</li>
            <li>{@code "480"}</li>
            <li>{@code "560"}</li>
          </ul>
          <p class="note"><strong>Note:</strong> This attribute currently does not accept
          {@code xxhdpi} as a valid value, but you can instead specify {@code 480}
          as the value, which is the approximate threshold for xhdpi screens.</p>

          <p>For information about the different screen densities, see <a
href="{@docRoot}guide/practices/screens_support.html#range">Supporting Multiple Screens</a>.</p>