diff --git a/docs/html/design/patterns/accessibility.jd b/docs/html/design/patterns/accessibility.jd index 2c3333f4d6ac3..edf38432a8aa8 100644 --- a/docs/html/design/patterns/accessibility.jd +++ b/docs/html/design/patterns/accessibility.jd @@ -1,4 +1,5 @@ page.title=Accessibility +page.tags="accessibility","navigation" @jd:body
One of Android's missions is to organize the world's information and make it universally accessible and useful. Accessibility is the measure of how successfully a product can be used by people with varying abilities. Our mission applies to all users-including people with disabilities such as visual impairment, color deficiency, hearing loss, and limited dexterity.
diff --git a/docs/html/design/patterns/actionbar.jd b/docs/html/design/patterns/actionbar.jd index 265ccde1bc6df..da9c3c3e3fc0c 100644 --- a/docs/html/design/patterns/actionbar.jd +++ b/docs/html/design/patterns/actionbar.jd @@ -1,4 +1,5 @@ page.title=Action Bar +page.tags="actionbar","navigation" @jd:body
diff --git a/docs/html/design/patterns/app-structure.jd b/docs/html/design/patterns/app-structure.jd
index 04af57bea2dd0..e1bb81992e0a3 100644
--- a/docs/html/design/patterns/app-structure.jd
+++ b/docs/html/design/patterns/app-structure.jd
@@ -1,4 +1,5 @@
page.title=Application Structure
+page.tags="navigation","layout"
@jd:body
Apps come in many varieties that address very different needs. For example:
diff --git a/docs/html/design/patterns/confirming-acknowledging.jd b/docs/html/design/patterns/confirming-acknowledging.jd index ce0631bad5004..f2e88eca7f41c 100644 --- a/docs/html/design/patterns/confirming-acknowledging.jd +++ b/docs/html/design/patterns/confirming-acknowledging.jd @@ -1,4 +1,5 @@ page.title=Confirming & Acknowledging +page.tags="dialog","toast" @jd:bodyIn some situations, when a user invokes an action in your app, it's a good idea to confirm or acknowledge that action through text.
diff --git a/docs/html/design/patterns/gestures.jd b/docs/html/design/patterns/gestures.jd index e579cee1aed5f..3ef133d20b37e 100644 --- a/docs/html/design/patterns/gestures.jd +++ b/docs/html/design/patterns/gestures.jd @@ -1,4 +1,5 @@ page.title=Gestures +page.tags="gesture","input" @jd:bodyGestures allow users to interact with your app by manipulating the screen objects you provide. The diff --git a/docs/html/design/patterns/multi-pane-layouts.jd b/docs/html/design/patterns/multi-pane-layouts.jd index e607676152e05..cbf29cb0f557c 100644 --- a/docs/html/design/patterns/multi-pane-layouts.jd +++ b/docs/html/design/patterns/multi-pane-layouts.jd @@ -1,4 +1,5 @@ page.title=Multi-pane Layouts +page.tags="tablet","navigation","layout","fragment" @jd:body
When writing an app for Android, keep in mind that Android devices come in many different screen diff --git a/docs/html/design/patterns/navigation.jd b/docs/html/design/patterns/navigation.jd index 656e6e5338fa4..36debbef949cf 100644 --- a/docs/html/design/patterns/navigation.jd +++ b/docs/html/design/patterns/navigation.jd @@ -1,4 +1,5 @@ page.title=Navigation with Back and Up +page.tags="navigation","activity" @jd:body
Consistent navigation is an essential component of the overall user experience. Few things frustrate diff --git a/docs/html/design/patterns/notifications.jd b/docs/html/design/patterns/notifications.jd index 0665774a563a5..3ae827e704504 100644 --- a/docs/html/design/patterns/notifications.jd +++ b/docs/html/design/patterns/notifications.jd @@ -1,4 +1,5 @@ page.title=Notifications +page.tags="notification" @jd:body
The notification system allows your app to keep the user informed about events, such as new chat messages or a calendar event. Think of notifications as a news channel that alerts the user to important events as they happen or a log that chronicles events while the user is not paying attention.
diff --git a/docs/html/design/patterns/selection.jd b/docs/html/design/patterns/selection.jd index e9d22e641f824..682ce5689f04f 100644 --- a/docs/html/design/patterns/selection.jd +++ b/docs/html/design/patterns/selection.jd @@ -1,4 +1,5 @@ page.title=Selection +page.tags="actionmode","navigation" @jd:bodyAndroid 3.0 changed the long press gesture—that is, a touch that's held in the same position for a moment—to be the global gesture to select data.. This affects the way you should diff --git a/docs/html/design/patterns/settings.jd b/docs/html/design/patterns/settings.jd index fef7585ac7de2..f86cd39367f13 100644 --- a/docs/html/design/patterns/settings.jd +++ b/docs/html/design/patterns/settings.jd @@ -1,4 +1,5 @@ page.title=Settings +page.tags="settings","preferences" @jd:body
Settings is a place in your app where users indicate their preferences for how your app should diff --git a/docs/html/design/patterns/swipe-views.jd b/docs/html/design/patterns/swipe-views.jd index daddd31e47306..b86d990007e81 100644 --- a/docs/html/design/patterns/swipe-views.jd +++ b/docs/html/design/patterns/swipe-views.jd @@ -1,4 +1,5 @@ page.title=Swipe Views +page.tags="viewpager","navigation" @jd:body
Efficient navigation is one of the cornerstones of a well-designed app. While apps are generally diff --git a/docs/html/design/patterns/widgets.jd b/docs/html/design/patterns/widgets.jd index 54726b1b530be..a5979ce9ad809 100644 --- a/docs/html/design/patterns/widgets.jd +++ b/docs/html/design/patterns/widgets.jd @@ -1,4 +1,5 @@ page.title=Widgets +page.tags="appwidget" @jd:body
Widgets are an essential aspect of home screen customization. You can imagine them as "at-a-glance" views of an app's most important data and functionality that is accessible right from the user's home screen. Users can move widgets across their home screen panels, and, if supported, resize them to tailor the amount of information within a widget to their preference.