diff options
Diffstat (limited to 'docs/html/design/patterns/multi-pane-layouts.jd')
-rw-r--r-- | docs/html/design/patterns/multi-pane-layouts.jd | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/docs/html/design/patterns/multi-pane-layouts.jd b/docs/html/design/patterns/multi-pane-layouts.jd index ff2dd4e..c207006 100644 --- a/docs/html/design/patterns/multi-pane-layouts.jd +++ b/docs/html/design/patterns/multi-pane-layouts.jd @@ -1,5 +1,6 @@ page.title=Multi-pane Layouts -page.tags=tablet,navigation,layout,fragment +page.tags="tablet","navigation","layout","fragment" +page.metaDescription=Android devices come in many different screen sizes and types. Multi-pane layouts help you provide a balanced and aesthetically pleasing layout across the range of Android devices. @jd:body @@ -10,9 +11,11 @@ page.tags=tablet,navigation,layout,fragment </div> </a> -<p>When writing an app for Android, keep in mind that Android devices come in many different screen -sizes and types. Make sure that your app consistently provides a balanced and aesthetically pleasing -layout by adjusting its content to varying screen sizes and orientations.</p> +<p>When writing an app for Android, keep in mind that Android devices +come in many different screen sizes and types. Make sure that your app consistently provides a +balanced and aesthetically pleasing layout by adjusting its content to varying screen sizes and +orientations.</p> + <p><em>Panels</em> are a great way for your app to achieve this. They allow you to combine multiple views into one compound view when a lot of horizontal screen real estate is available and by splitting them up when less space is available.</p> |