diff options
author | Scott Main <smain@google.com> | 2010-11-03 14:46:36 -0700 |
---|---|---|
committer | Scott Main <smain@google.com> | 2010-11-10 15:27:40 -0800 |
commit | ae5335b673be71fe96b8871ea376337d29e01e6e (patch) | |
tree | 2567ec5c3ecdb9bdae8b597d27837abf4e001bf7 /docs/html/guide/topics | |
parent | 77f5c9542e159cb9f2f2908227212d4add8ce74c (diff) | |
download | frameworks_base-ae5335b673be71fe96b8871ea376337d29e01e6e.zip frameworks_base-ae5335b673be71fe96b8871ea376337d29e01e6e.tar.gz frameworks_base-ae5335b673be71fe96b8871ea376337d29e01e6e.tar.bz2 |
docs: add docs for xhdpi and xlarge screen support
update screen ranges figure
bug: 3099462
Change-Id: I4667f105df2ddc04a8e2b6c3ad06ec0ded2dccd2
Diffstat (limited to 'docs/html/guide/topics')
-rw-r--r-- | docs/html/guide/topics/resources/providing-resources.jd | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/docs/html/guide/topics/resources/providing-resources.jd b/docs/html/guide/topics/resources/providing-resources.jd index d868599..4f3b0da 100644 --- a/docs/html/guide/topics/resources/providing-resources.jd +++ b/docs/html/guide/topics/resources/providing-resources.jd @@ -329,7 +329,8 @@ indicates the current locale.</p> <td> <code>small</code><br/> <code>normal</code><br/> - <code>large</code> + <code>large</code><br/> + <code>xlarge</code> </td> <td> <ul class="nolist"> @@ -347,6 +348,10 @@ indicates the current locale.</p> medium-density VGA screen. Such a screen has significantly more available space in both width and height than an HVGA display. Examples are VGA and WVGA medium density screens.</li> + <li>{@code xlarge}: Screens that are considerably larger than the traditional + medium-density HVGA screen. In most cases, devices with extra large screens would be too +large to carry in a pocket and would most likely be tablet-style devices. <em>Added in API Level +9.</em></li> </ul> <p><em>Added in API Level 4.</em></p> <p>See <a href="{@docRoot}guide/practices/screens_support.html">Supporting Multiple @@ -437,6 +442,7 @@ application during runtime.</p> <code>ldpi</code><br/> <code>mdpi</code><br/> <code>hdpi</code><br/> + <code>xhdpi</code><br/> <code>nodpi</code> </td> <td> @@ -445,6 +451,8 @@ application during runtime.</p> <li>{@code mdpi}: Medium-density (on traditional HVGA) screens; approximately 160dpi.</li> <li>{@code hdpi}: High-density screens; approximately 240dpi.</li> + <li>{@code xhdpi}: Extra high-density screens; approximately 320dpi. <em>Added in API +Level 8</em></li> <li>{@code nodpi}: This can be used for bitmap resources that you do not want to be scaled to match the device density.</li> </ul> |