diff options
| author | Scott Main <smain@google.com> | 2011-12-16 13:06:22 -0800 |
|---|---|---|
| committer | Scott Main <smain@google.com> | 2012-02-01 11:40:49 -0800 |
| commit | 5e0959393426371dadef2c7905d5c915a1ac2dd4 (patch) | |
| tree | 7a3ada43e2f53b7ba6f55708b91025c659c5af96 /core/java/android | |
| parent | ccc11c4d3c8357a402b84c546e7b2f889729358c (diff) | |
docs: update menu guide with CAB and popup menu, plus many other revisions
Change-Id: I5faedd5f5b812ca58eb2085b0c036570de861f15
Diffstat (limited to 'core/java/android')
| -rw-r--r-- | core/java/android/view/ActionMode.java | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/core/java/android/view/ActionMode.java b/core/java/android/view/ActionMode.java index 34e7d4d746bb..0349a2be3fbf 100644 --- a/core/java/android/view/ActionMode.java +++ b/core/java/android/view/ActionMode.java @@ -18,9 +18,15 @@ package android.view; /** - * Represents a contextual mode of the user interface. Action modes can be used for - * modal interactions with content and replace parts of the normal UI until finished. - * Examples of good action modes include selection modes, search, content editing, etc. + * Represents a contextual mode of the user interface. Action modes can be used to provide + * alternative interaction modes and replace parts of the normal UI until finished. + * Examples of good action modes include text selection and contextual actions. + * <div class="special reference"> + * <h3>Developer Guides</h3> + * <p>For information about how to provide contextual actions with {@code ActionMode}, + * read the <a href="{@docRoot}guide/topics/ui/menu.html#context-menu">Menus</a> + * developer guide.</p> + * </div> */ public abstract class ActionMode { private Object mTag; |
