From d4cc94299613ca73c941e3a9b5ed935f444b963d Mon Sep 17 00:00:00 2001 From: Scott Main Date: Wed, 3 Oct 2012 18:47:08 -0700 Subject: [PATCH] add links from various design docs to corresponding developer docs Change-Id: Id731979a9b6ebcfc956848933d64ea5cf64953b5 --- docs/html/design/building-blocks/buttons.jd | 7 +++++++ docs/html/design/building-blocks/dialogs.jd | 13 +++++++++++++ docs/html/design/building-blocks/pickers.jd | 7 +++++++ docs/html/design/building-blocks/spinners.jd | 7 +++++++ docs/html/design/building-blocks/switches.jd | 8 ++++++++ docs/html/design/building-blocks/tabs.jd | 7 +++++++ docs/html/design/building-blocks/text-fields.jd | 8 ++++++++ docs/html/design/patterns/accessibility.jd | 9 +++++++++ docs/html/design/patterns/actionbar.jd | 11 +++++++++++ docs/html/design/patterns/multi-pane-layouts.jd | 12 ++++++++++++ docs/html/design/patterns/navigation.jd | 12 ++++++++++++ docs/html/design/patterns/notifications.jd | 11 ++++++++++- docs/html/design/patterns/settings.jd | 9 +++++++++ docs/html/design/patterns/swipe-views.jd | 10 ++++++++++ docs/html/design/patterns/widgets.jd | 10 +++++++++- 15 files changed, 139 insertions(+), 2 deletions(-) diff --git a/docs/html/design/building-blocks/buttons.jd b/docs/html/design/building-blocks/buttons.jd index 1c28cbefb1172..82e2477c86be5 100644 --- a/docs/html/design/building-blocks/buttons.jd +++ b/docs/html/design/building-blocks/buttons.jd @@ -36,3 +36,10 @@ use borderless buttons with both icons and text. Borderless buttons are visually than basic buttons and integrate nicely with other content.

+ + +
+

Developer Guide

+

For information about how to build and customize buttons in your app, + see the Buttons API guide.

+
diff --git a/docs/html/design/building-blocks/dialogs.jd b/docs/html/design/building-blocks/dialogs.jd index 728821e211625..a2ece2ea5cce9 100644 --- a/docs/html/design/building-blocks/dialogs.jd +++ b/docs/html/design/building-blocks/dialogs.jd @@ -122,6 +122,12 @@ available based on the title and the text of the action buttons.

+
+

Developer Guide

+

For information about how to build dialogs in your app, + see the Dialogs API guide.

+
+

Popups

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.

+ + +
+

Developer Guide

+

For information about how to create toasts, + see the Toasts API guide.

+
diff --git a/docs/html/design/building-blocks/pickers.jd b/docs/html/design/building-blocks/pickers.jd index e3cf6424c7e30..b328df90548b5 100644 --- a/docs/html/design/building-blocks/pickers.jd +++ b/docs/html/design/building-blocks/pickers.jd @@ -29,3 +29,10 @@ app helps ensure that a user's specification of a data or time input is valid an correctly. The format of a time and date picker adjusts automatically to the locale.

+ + +
+

Developer Guide

+

For information about how to create date and time pickers, + see the Pickers API guide.

+
diff --git a/docs/html/design/building-blocks/spinners.jd b/docs/html/design/building-blocks/spinners.jd index 621a57ce74413..279565f88fa40 100644 --- a/docs/html/design/building-blocks/spinners.jd +++ b/docs/html/design/building-blocks/spinners.jd @@ -35,3 +35,10 @@ tabs.

Spinners in the Holo Dark and Holo Light themes, in various states.
+ + +
+

Developer Guide

+

For information about how to create spinners, + see the Spinners API guide.

+
diff --git a/docs/html/design/building-blocks/switches.jd b/docs/html/design/building-blocks/switches.jd index c4dfc4bdeb9fe..d9cfd07fd3794 100644 --- a/docs/html/design/building-blocks/switches.jd +++ b/docs/html/design/building-blocks/switches.jd @@ -23,3 +23,11 @@ consider a spinner, which uses less space.

On/off switches toggle the state of a single settings option.

+ +
+

Developer Guide

+

For information about how to create these different switches, + see the Checkboxes, + Radio Buttons, or + Toggle Buttons API guides.

+
diff --git a/docs/html/design/building-blocks/tabs.jd b/docs/html/design/building-blocks/tabs.jd index fe05f80a62725..0a0f9077981b6 100644 --- a/docs/html/design/building-blocks/tabs.jd +++ b/docs/html/design/building-blocks/tabs.jd @@ -57,3 +57,10 @@ to the next/previous view, swipe left or right.

permits fast view switching even on narrower screens.

+ + +
+

Developer Guide

+

For information about how to create tabs, + see the Action Bar API guide.

+
diff --git a/docs/html/design/building-blocks/text-fields.jd b/docs/html/design/building-blocks/text-fields.jd index 1b10420db4f37..563f2475ae4e0 100644 --- a/docs/html/design/building-blocks/text-fields.jd +++ b/docs/html/design/building-blocks/text-fields.jd @@ -68,3 +68,11 @@ Selection mode includes:

+ + +
+

Developer Guide

+

For information about how to create text fields, provide auto-complete suggestions, + and specify the input mode, + see the Text Fields API guide.

+
diff --git a/docs/html/design/patterns/accessibility.jd b/docs/html/design/patterns/accessibility.jd index b2fbda97c9d7a..2c3333f4d6ac3 100644 --- a/docs/html/design/patterns/accessibility.jd +++ b/docs/html/design/patterns/accessibility.jd @@ -69,6 +69,15 @@ page.title=Accessibility

Try it out yourself

Turn on the TalkBack service in Settings > Accessibility and navigate your application using directional controls or eyes-free navigation.

+ +
+

Developer Guide

+

For information about how to properly implement accessibility in your app, see the + Accessibility + API guide.

+
+ +

Checklist