You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/html/design/patterns/app-structure.jd
+17Lines changed: 17 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -86,6 +86,9 @@ important actions.</p>
86
86
through the navigation hierarchy.</li>
87
87
</ul>
88
88
89
+
<p>For more discussion, see the <a href="{@docRoot}design/patterns/actionbar.html">Action Bar</a>
90
+
design guide.</p>
91
+
89
92
</div>
90
93
<div class="layout-content-col span-8">
91
94
@@ -164,6 +167,10 @@ in view at the same time.</p>
164
167
</div>
165
168
</div>
166
169
170
+
<p>For more discussion, see the <a href="{@docRoot}design/building-blocks/tabs.html">Tabs</a>
171
+
design guide.</p>
172
+
173
+
167
174
<h4>Allow cutting through hierarchies</h4>
168
175
<p>Take advantage of shortcuts that allow people to reach their goals quicker. To allow top-level
169
176
invocation of actions for a data item from within list or grid views, display prominent actions
@@ -183,6 +190,12 @@ are often good reasons to act on collections of data as well.</p>
183
190
delete multiple items in the category view. Analyze which detail view actions are applicable to
184
191
collections of items. Then use multi-select to allow application of those actions to multiple items
185
192
in a category view.</p>
193
+
194
+
195
+
<p>For more discussion, see the <a href="{@docRoot}design/patterns/selection.html">Selection</a>
196
+
design guide.</p>
197
+
198
+
186
199
<h2 id="details">Details</h2>
187
200
188
201
<p>The detail view allows you to view and act on your data. The layout of the detail view depends on the data type being displayed, and therefore differs widely among apps.</p>
@@ -239,6 +252,10 @@ to achieve this.</p>
239
252
thumbnail view control that lets people quickly jump to specific pages.
240
253
</div>
241
254
255
+
<p>For more discussion, see the <a href="{@docRoot}design/patterns/swipe-views.html">Swipe Views</a>
Copy file name to clipboardExpand all lines: docs/html/design/style/devices-displays.jd
+16-3Lines changed: 16 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -36,8 +36,21 @@ ensure that your app looks great on any device.</p>
36
36
37
37
<h4>Strategies</h4>
38
38
<p>So where do you begin when designing for multiple screens? One approach is to work in the base
39
-
standard (medium size, <acronym title="Medium density (160 dpi)">MDPI</acronym>) and scale it up or
39
+
standard (normal size and <acronym title="Medium density (160 dpi)">MDPI</acronym>) and scale it up or
40
40
down for the other buckets. Another approach is to start with the device with the largest screen
41
41
size, and then scale down and figure out the UI compromises you'll need to make on smaller screens.</p>
42
-
<p>For more detailed information on this topic, please visit <a href="http://developer.android.com/guide/practices/screens_support.html">Supporting Multiple
43
-
Screens</a>.</p>
42
+
43
+
<p>For details about designing layouts for larger screens, see the <a
0 commit comments