diff options
author | Romain Guy <romainguy@google.com> | 2017-01-18 16:34:42 -0800 |
---|---|---|
committer | Romain Guy <romainguy@google.com> | 2017-01-19 18:44:00 -0800 |
commit | c9ba55902123be5abcf2dcda5af9995be0b8d3d8 (patch) | |
tree | 953bf264c1f748816ad8ebc4898f580d163ce959 /docs | |
parent | a2b1774d758b58fc5977f631eff76fa21d303906 (diff) |
Add wide color gamut and HDR resource qualifiers
Bug: 32984164
Test: Config_test, AaptConfig_test and aapt2_tests
Change-Id: Ie9c82bfe2d36b1d6180ee223250ab5bb2ce90dd4
Diffstat (limited to 'docs')
-rw-r--r-- | docs/html/guide/topics/resources/providing-resources.jd | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/docs/html/guide/topics/resources/providing-resources.jd b/docs/html/guide/topics/resources/providing-resources.jd index 77e8d7720c61..021a07ecaa5b 100644 --- a/docs/html/guide/topics/resources/providing-resources.jd +++ b/docs/html/guide/topics/resources/providing-resources.jd @@ -565,6 +565,38 @@ which indicates whether the screen is long.</p> method, which indicates whether the screen is round.</p> </td> </tr> + <tr id="WideColorGamutQualifier"> + <td>Wide Color Gamut</td> + <td> + <code>widecg</code><br/> + <code>nowidecg</code> + </td> + <td> + <ul class="nolist"> + <li>{@code widecg}: Displays with a wide color gamut such as Display P3 or AdobeRGB</li> + <li>{@code nowidecg}: Displays with a narrow color gamut such as sRGB</li> + </ul> + <p><em>Added in API level 26.</em></p> + <p>Also see the {@link android.content.res.Configuration#isScreenWideColorGamut()} configuration + method, which indicates whether the screen has a wide color gamut.</p> + </td> + </tr> + <tr id="HDRQualifier"> + <td>High Dynamic Range (HDR)</td> + <td> + <code>highdr</code><br/> + <code>lowdr</code> + </td> + <td> + <ul class="nolist"> + <li>{@code highdr}: Displays with a high-dynamic range</li> + <li>{@code lowdr}: Displays with a low/standard dynamic range</li> + </ul> + <p><em>Added in API level 26.</em></p> + <p>Also see the {@link android.content.res.Configuration#isScreenHdr()} configuration + method, which indicates whether the screen has a HDR capabilities.</p> + </td> + </tr> <tr id="OrientationQualifier"> <td>Screen orientation</td> <td> |