From 2ed01adc8d1af5a11520bd71450b764ca36fcb1c Mon Sep 17 00:00:00 2001 From: Scott Main Date: Thu, 4 Oct 2012 11:14:01 -0700 Subject: a few more crosslinks for design guide (to other design docs or dev docs) Change-Id: Icba63102236b6efe445957f1f3070b705a40e1a9 --- docs/html/design/patterns/app-structure.jd | 17 +++++++++++++++++ docs/html/design/patterns/selection.jd | 7 +++++++ docs/html/design/style/devices-displays.jd | 19 ++++++++++++++++--- docs/html/design/style/themes.jd | 7 +++++++ 4 files changed, 47 insertions(+), 3 deletions(-) diff --git a/docs/html/design/patterns/app-structure.jd b/docs/html/design/patterns/app-structure.jd index a483522fd1da..04af57bea2dd 100644 --- a/docs/html/design/patterns/app-structure.jd +++ b/docs/html/design/patterns/app-structure.jd @@ -86,6 +86,9 @@ important actions.

through the navigation hierarchy. +

For more discussion, see the Action Bar +design guide.

+
@@ -164,6 +167,10 @@ in view at the same time.

+

For more discussion, see the Tabs +design guide.

+ +

Allow cutting through hierarchies

Take advantage of shortcuts that allow people to reach their goals quicker. To allow top-level 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.

delete multiple items in the category view. Analyze which detail view actions are applicable to collections of items. Then use multi-select to allow application of those actions to multiple items in a category view.

+ + +

For more discussion, see the Selection +design guide.

+ +

Details

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.

@@ -239,6 +252,10 @@ to achieve this.

thumbnail view control that lets people quickly jump to specific pages. +

For more discussion, see the Swipe Views +design guide.

+ +

Checklist