diff options
author | Dirk Dougherty <ddougherty@google.com> | 2010-01-07 10:48:19 -0800 |
---|---|---|
committer | Dirk Dougherty <ddougherty@google.com> | 2010-01-11 11:15:22 -0800 |
commit | cf6bbab6dbaa022855f129064515c928246d25be (patch) | |
tree | dada2083245107f171f894802204b80be5a57ba1 /docs/html/guide/practices | |
parent | d71c2aa1a33a456b631ae539fe57f8eb5615fcd5 (diff) | |
download | frameworks_base-cf6bbab6dbaa022855f129064515c928246d25be.zip frameworks_base-cf6bbab6dbaa022855f129064515c928246d25be.tar.gz frameworks_base-cf6bbab6dbaa022855f129064515c928246d25be.tar.bz2 |
SDK doc change: Miscellaneous fixes.
Bug: 2160782
Change-Id: I5f1e449bcb2c8f715858b6819f041349088a8a32
Diffstat (limited to 'docs/html/guide/practices')
-rw-r--r-- | docs/html/guide/practices/screens_support.jd | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/html/guide/practices/screens_support.jd b/docs/html/guide/practices/screens_support.jd index 10f4485..643d307 100644 --- a/docs/html/guide/practices/screens_support.jd +++ b/docs/html/guide/practices/screens_support.jd @@ -289,11 +289,11 @@ Alternate Resources</a>. compatibility features that together manage the rendering of application resources in an appropriate way for the current device screen. The platform handles most of the work of rendering your application, but also gives you two -key ways to control the way your application is displayed, if you need or want +key ways to control how your application is displayed, if you need or want to use them:</p> <ul> - <li>The platform provides a set of resource qualifiers that let you provide + <li>The platform supports a set of resource qualifiers that let you provide size- and density-specific resources, if needed. The qualifiers for size-specific resources are <code>large</code>, <code>normal</code>, and <code>small</code>, and those for density-specific resources are @@ -303,7 +303,7 @@ size-specific resources are <code>large</code>, <code>normal</code>, and <li>The platform also provides a <a href="{@docRoot}guide/topics/manifest/supports-screens-element.html"> <code><supports-screens></code></a> -element, whose attributes +manifest element, whose attributes <code>android:largeScreens</code>, <code>android:normalScreens</code>, and <code>android:smallScreens</code> let you specify what generalized screen sizes your application supports. A fourth attribute, <code>android:anyDensity</code>, |