Home | History | Annotate | Download | only in improving-layouts

Lines Matching full:layout

1 page.title=Improving Layout Performance
6 next.title=Optimizing Layout
7 next.link=optimizing-layout.html
23 <li><a href="{@docRoot}guide/topics/ui/declaring-layout.html">XML Layouts</a></li>
39 implemented poorly, your layout can lead to a memory hungry application with slow UIs. The Android
40 SDK includes tools to help you identify problems in your layout performance, which when combined the
49 <dt><b><a href="optimizing-layout.html">Optimizing Layout Hierarchies</a></b></dt>
50 <dd>In the same way a complex web page can slow down load time, your layout hierarchy
52 to inspect your layout and discover performance bottlenecks.</dd>
54 <dd>If your application UI repeats certain layout constructs in multiple places, this lesson
55 shows you how to create efficient, re-usable layout constructs, then include them in the appropriate
58 <dd>Beyond simply including one layout component within another layout, you might want to
59 make the included layout visible only when it's needed, sometime after the activity is running.
60 This lesson shows how you can improve your layout's initialization performance by loading
61 portions of your layout on demand.</dd>