diff options
author | Scott Main <smain@google.com> | 2010-09-24 16:17:27 -0700 |
---|---|---|
committer | Scott Main <smain@google.com> | 2010-10-04 13:30:30 -0700 |
commit | ec80d7f311b1a0899bb4caf5b380b07027e902d1 (patch) | |
tree | b65ae09178adc3c26ebd6ca9ba156e57a12fcd04 /docs/html/guide/topics/ui/notifiers | |
parent | ba944ccda3d61ccbe6061277fcc50c96fe2643f1 (diff) | |
download | frameworks_base-ec80d7f311b1a0899bb4caf5b380b07027e902d1.zip frameworks_base-ec80d7f311b1a0899bb4caf5b380b07027e902d1.tar.gz frameworks_base-ec80d7f311b1a0899bb4caf5b380b07027e902d1.tar.bz2 |
docs: consistency fixit for the quickview boxes in the dev guide
Change-Id: Ibd81091fc6002a77ce43f553b63facec53f16a38
Diffstat (limited to 'docs/html/guide/topics/ui/notifiers')
-rw-r--r-- | docs/html/guide/topics/ui/notifiers/index.jd | 8 | ||||
-rw-r--r-- | docs/html/guide/topics/ui/notifiers/notifications.jd | 20 | ||||
-rw-r--r-- | docs/html/guide/topics/ui/notifiers/toasts.jd | 14 |
3 files changed, 26 insertions, 16 deletions
diff --git a/docs/html/guide/topics/ui/notifiers/index.jd b/docs/html/guide/topics/ui/notifiers/index.jd index f7ccce7..d29324c 100644 --- a/docs/html/guide/topics/ui/notifiers/index.jd +++ b/docs/html/guide/topics/ui/notifiers/index.jd @@ -3,13 +3,7 @@ page.title=Notifying the User <div id="qv-wrapper"> <div id="qv"> - <h2>In this document</h2> - <ol> - <li><a href="#Toast">Toast Notification</a></li> - <li><a href="#StatusBarNotification">Status Bar Notification</a></li> - <li><a href="#Dialog">Dialog Notification</a></li> - </ol> - <h2>More about</h2> + <h2>Topics</h2> <ol> <li><a href="toasts.html">Creating Toast Notifications</a></li> <li><a href="notifications.html">Creating Status Bar Notifications</a></li> diff --git a/docs/html/guide/topics/ui/notifiers/notifications.jd b/docs/html/guide/topics/ui/notifiers/notifications.jd index a0dd9f1..abc945a 100644 --- a/docs/html/guide/topics/ui/notifiers/notifications.jd +++ b/docs/html/guide/topics/ui/notifiers/notifications.jd @@ -5,18 +5,21 @@ parent.link=index.html <div id="qv-wrapper"> <div id="qv"> - <h2>Key classes</h2> - <ol> - <li>{@link android.app.Notification}</li> - <li>{@link android.app.NotificationManager}</li> - </ol> + <h2>Quickview</h2> + <ul> + <li>A status bar notification allows your application to notify the user of an event +without interupting their current activity</li> + <li>You can attach an intent to your notification that the system will initiate when the +user clicks it</li> + </ul> + <h2>In this document</h2> <ol> <li><a href="#Basics">The Basics</a></li> <li><a href="#ManageYourNotifications">Managing your Notifications</a></li> <li><a href="#CreateANotification">Creating a Notification</a> <ol> - <li><a href="#Update">Updating the notification</a></li> + <li><a href="#Updating">Updating the notification</a></li> <li><a href="#Sound">Adding a sound</a></li> <li><a href="#Vibration">Adding vibration</a></li> <li><a href="#Lights">Adding flashing lights</a></li> @@ -25,6 +28,11 @@ parent.link=index.html </li> <li><a href="#CustomExpandedView">Creating a Custom Expanded View</a></li> </ol> + <h2>Key classes</h2> + <ol> + <li>{@link android.app.Notification}</li> + <li>{@link android.app.NotificationManager}</li> + </ol> </div> </div> diff --git a/docs/html/guide/topics/ui/notifiers/toasts.jd b/docs/html/guide/topics/ui/notifiers/toasts.jd index 5b324d2..0d3e10c 100644 --- a/docs/html/guide/topics/ui/notifiers/toasts.jd +++ b/docs/html/guide/topics/ui/notifiers/toasts.jd @@ -5,16 +5,24 @@ parent.link=index.html <div id="qv-wrapper"> <div id="qv"> - <h2>Key classes</h2> + <h2>Quickview</h2> <ol> - <li>{@link android.widget.Toast}</li> + <li>A toast is a message that appears on the surface of the screen for a moment, but it +does not take focus (or pause the current activity), so it cannot accept user input</li> + <li>You can customize the toast layout to include images</li> </ol> + <h2>In this document</h2> <ol> <li><a href="#Basics">The Basics</a></li> - <li><a href="#Position">Positioning your Toast</a></li> + <li><a href="#Positioning">Positioning your Toast</a></li> <li><a href="#CustomToastView">Creating a Custom Toast View</a></li> </ol> + + <h2>Key classes</h2> + <ol> + <li>{@link android.widget.Toast}</li> + </ol> </div> </div> |