Skip to content

Commit 70e6cff

Browse files
scottamainAndroid Git Automerger
authored andcommitted
am 6b96217: am cea1f19: Merge "add links from various design docs to corresponding developer docs" into jb-dev-docs
* commit '6b962174bf974edd5298a37498777780e0b7b1fe': add links from various design docs to corresponding developer docs
2 parents 486eb46 + 6b96217 commit 70e6cff

File tree

15 files changed

+139
-2
lines changed

15 files changed

+139
-2
lines changed

docs/html/design/building-blocks/buttons.jd

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,10 @@ use borderless buttons with both icons and text. Borderless buttons are visually
3636
than basic buttons and integrate nicely with other content.</p>
3737

3838
<img src="{@docRoot}design/media/buttons_borderless.png">
39+
40+
41+
<div class="note develop">
42+
<p><strong>Developer Guide</strong></p>
43+
<p>For information about how to build and customize buttons in your app,
44+
see the <a href="{@docRoot}guide/topics/ui/controls/button.html">Buttons</a> API guide.</p>
45+
</div>

docs/html/design/building-blocks/dialogs.jd

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,12 @@ available based on the title and the text of the action buttons.</p>
122122
</div>
123123
</div>
124124

125+
<div class="note develop">
126+
<p><strong>Developer Guide</strong></p>
127+
<p>For information about how to build dialogs in your app,
128+
see the <a href="{@docRoot}guide/topics/ui/dialogs.html">Dialogs</a> API guide.</p>
129+
</div>
130+
125131
<h2 id="popups">Popups</h2>
126132

127133
<p>Popups are lightweight version of dialogs that require a single selection from the user. Popups
@@ -150,3 +156,10 @@ continue editing later. Toasts automatically disappear after a timeout.</p>
150156

151157
</div>
152158
</div>
159+
160+
161+
<div class="note develop">
162+
<p><strong>Developer Guide</strong></p>
163+
<p>For information about how to create toasts,
164+
see the <a href="{@docRoot}guide/topics/ui/notifiers/toasts.html">Toasts</a> API guide.</p>
165+
</div>

docs/html/design/building-blocks/pickers.jd

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,10 @@ app helps ensure that a user's specification of a data or time input is valid an
2929
correctly. The format of a time and date picker adjusts automatically to the locale.</p>
3030

3131
<img src="{@docRoot}design/media/picker_datetime.png">
32+
33+
34+
<div class="note develop">
35+
<p><strong>Developer Guide</strong></p>
36+
<p>For information about how to create date and time pickers,
37+
see the <a href="{@docRoot}guide/topics/ui/controls/pickers.html">Pickers</a> API guide.</p>
38+
</div>

docs/html/design/building-blocks/spinners.jd

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,3 +35,10 @@ tabs.</p>
3535
<div class="figure-caption">
3636
Spinners in the Holo Dark and Holo Light themes, in various states.
3737
</div>
38+
39+
40+
<div class="note develop">
41+
<p><strong>Developer Guide</strong></p>
42+
<p>For information about how to create spinners,
43+
see the <a href="{@docRoot}guide/topics/ui/controls/spinner.html">Spinners</a> API guide.</p>
44+
</div>

docs/html/design/building-blocks/switches.jd

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,11 @@ consider a spinner, which uses less space.</p>
2323
<p>On/off switches toggle the state of a single settings option.</p>
2424

2525
<img src="{@docRoot}design/media/switches_switches.png">
26+
27+
<div class="note develop">
28+
<p><strong>Developer Guide</strong></p>
29+
<p>For information about how to create these different switches,
30+
see the <a href="{@docRoot}guide/topics/ui/controls/checkbox.html">Checkboxes</a>,
31+
<a href="{@docRoot}guide/topics/ui/controls/radiobutton.html">Radio Buttons</a>, or
32+
<a href="{@docRoot}guide/topics/ui/controls/togglebutton.html">Toggle Buttons</a> API guides.</p>
33+
</div>

docs/html/design/building-blocks/tabs.jd

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,3 +57,10 @@ to the next/previous view, swipe left or right.</p>
5757
permits fast view switching even on narrower screens.</p>
5858

5959
<img src="{@docRoot}design/media/tabs_stacked.png">
60+
61+
62+
<div class="note develop">
63+
<p><strong>Developer Guide</strong></p>
64+
<p>For information about how to create tabs,
65+
see the <a href="{@docRoot}guide/topics/ui/actionbar.html">Action Bar</a> API guide.</p>
66+
</div>

docs/html/design/building-blocks/text-fields.jd

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,3 +68,11 @@ Selection mode includes:</p>
6868

6969
</div>
7070
</div>
71+
72+
73+
<div class="note develop">
74+
<p><strong>Developer Guide</strong></p>
75+
<p>For information about how to create text fields, provide auto-complete suggestions,
76+
and specify the input mode,
77+
see the <a href="{@docRoot}guide/topics/ui/controls/text.html">Text Fields</a> API guide.</p>
78+
</div>

docs/html/design/patterns/accessibility.jd

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,15 @@ page.title=Accessibility
6969
<h4>Try it out yourself</h4>
7070
<p>Turn on the TalkBack service in <strong>Settings > Accessibility</strong> and navigate your application using directional controls or eyes-free navigation.</p>
7171

72+
73+
<div class="note develop">
74+
<p><strong>Developer Guide</strong></p>
75+
<p>For information about how to properly implement accessibility in your app, see the
76+
<a href="{@docRoot}guide/topics/ui/accessibility/index.html">Accessibility</a>
77+
API guide.</p>
78+
</div>
79+
80+
7281
<h2>Checklist</h2>
7382
<ul>
7483
<li>Make navigation intuitive</li>

docs/html/design/patterns/actionbar.jd

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -349,6 +349,17 @@ sharing options.</p>
349349
The Gallery app's share action provider with extended spinner for additional sharing options.
350350
</div>
351351

352+
353+
<div class="note develop">
354+
<p><strong>Developer Guide</strong></p>
355+
<p>For information about how to build an action bar
356+
see the <a href="{@docRoot}guide/topics/ui/actionbar.html">Action Bar</a> API guide.
357+
For information about contextual action bars, read
358+
<a href="{@docRoot}guide/topics/ui/menus.html#context-menu">Creating Contextual Menus</a>.
359+
</p>
360+
</div>
361+
362+
352363
<h2 id="checklist">Action Bar Checklist</h2>
353364

354365
<p>When planning your split action bars, ask yourself questions like these:</p>

docs/html/design/patterns/multi-pane-layouts.jd

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,18 @@ you can use to adjust the layout after orientation change while keeping function
8686
</div>
8787
</div>
8888

89+
90+
<div class="note develop">
91+
<p><strong>Developer Guide</strong></p>
92+
<p>For information about how to create multi-pane layouts, read
93+
see the <a href="{@docRoot}training/basics/fragments/index.html">Building
94+
a Dynamic UI with Fragments</a> and
95+
<a href="{@docRoot}training/multiscreen/index.html">Designing for Multiple Screens</a>.
96+
</p>
97+
</div>
98+
99+
100+
89101
<h2 id="checklist">Checklist</h2>
90102

91103
<ul>

0 commit comments

Comments
 (0)