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 | |
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')
18 files changed, 122 insertions, 93 deletions
diff --git a/docs/html/guide/topics/appwidgets/index.jd b/docs/html/guide/topics/appwidgets/index.jd index 7a8dd59..3de5627 100644 --- a/docs/html/guide/topics/appwidgets/index.jd +++ b/docs/html/guide/topics/appwidgets/index.jd @@ -3,12 +3,14 @@ page.title=App Widgets <div id="qv-wrapper"> <div id="qv"> - <h2>Key classes</h2> - <ol> - <li>{@link android.appwidget.AppWidgetProvider}</li> - <li>{@link android.appwidget.AppWidgetProviderInfo}</li> - <li>{@link android.appwidget.AppWidgetManager}</li> - </ol> + <h2>Quickview</h2> + <ul> + <li>App Widgets provide users access to some of your application features +directly from the Home screen (without the need to launch an activity)</li> + <li>App Widgets are backed by a special kind of broadcast receiver that handles the App +Widget lifecycle</li> + </ul> + <h2>In this document</h2> <ol> <li><a href="#Basics">The Basics</a></li> @@ -28,6 +30,13 @@ page.title=App Widgets </li> </ol> + <h2>Key classes</h2> + <ol> + <li>{@link android.appwidget.AppWidgetProvider}</li> + <li>{@link android.appwidget.AppWidgetProviderInfo}</li> + <li>{@link android.appwidget.AppWidgetManager}</li> + </ol> + <h2>See also</h2> <ol> <li><a href="{@docRoot}guide/practices/ui_guidelines/widget_design.html">App Widget Design diff --git a/docs/html/guide/topics/fundamentals.jd b/docs/html/guide/topics/fundamentals.jd index 6d6abd8..a095087 100644 --- a/docs/html/guide/topics/fundamentals.jd +++ b/docs/html/guide/topics/fundamentals.jd @@ -3,14 +3,6 @@ page.title=Application Fundamentals <div id="qv-wrapper"> <div id="qv"> -<h2>Key classes</h2> -<ol> -<li>{@link android.app.Activity}</li> -<li>{@link android.app.Service}</li> -<li>{@link android.content.BroadcastReceiver}</li> -<li>{@link android.content.ContentProvider}</li> -<li>{@link android.content.Intent}</li> -</ol> <h2>In this document</h2> <ol> @@ -43,6 +35,16 @@ page.title=Application Fundamentals <li><a href="#proclife">Processes and lifecycles</a></li> </ol></li> </ol> + +<h2>Key classes</h2> +<ol> +<li>{@link android.app.Activity}</li> +<li>{@link android.app.Service}</li> +<li>{@link android.content.BroadcastReceiver}</li> +<li>{@link android.content.ContentProvider}</li> +<li>{@link android.content.Intent}</li> +</ol> + </div> </div> diff --git a/docs/html/guide/topics/intents/intents-filters.jd b/docs/html/guide/topics/intents/intents-filters.jd index bd1d694..5905214 100644 --- a/docs/html/guide/topics/intents/intents-filters.jd +++ b/docs/html/guide/topics/intents/intents-filters.jd @@ -3,15 +3,6 @@ page.title=Intents and Intent Filters <div id="qv-wrapper"> <div id="qv"> -<h2>Key classes</h2> -<ol> -<li>{@link android.content.Intent}</li> -<li>{@link android.content.IntentFilter}</li> -<li>{@link android.app.Activity}</li> -<li>{@link android.app.Service}</li> -<li>{@link android.content.BroadcastReceiver}</li> -<li>{@link android.content.pm.PackageManager}</li> -</ol> <h2>In this document</h2> <ol> @@ -22,6 +13,15 @@ page.title=Intents and Intent Filters <li style="margin-left: 2em"><a href="#imatch">Using intent matching</a></li> <li><a href="#npex">Note Pad Example</a></li> </ol> + +<h2>Key classes</h2> +<ol> +<li>{@link android.content.Intent}</li> +<li>{@link android.content.IntentFilter}</li> +<li>{@link android.content.BroadcastReceiver}</li> +<li>{@link android.content.pm.PackageManager}</li> +</ol> + </div> </div> diff --git a/docs/html/guide/topics/media/index.jd b/docs/html/guide/topics/media/index.jd index 96c500c..558d453 100644 --- a/docs/html/guide/topics/media/index.jd +++ b/docs/html/guide/topics/media/index.jd @@ -4,7 +4,7 @@ page.title=Audio and Video <div id="qv-wrapper"> <div id="qv"> -<h2>Audio/Video quickview</h2> +<h2>Quickview</h2> <ul> <li>Audio playback and record</li> <li>Video playback</li> @@ -12,14 +12,6 @@ page.title=Audio and Video <li>Built-in codecs for a variety of media. See <a href="{@docRoot}guide/appendix/media-formats.html">Android Supported Media Formats</a></li> </ul> -<h2>Key classes</h2> -<ol> -<li>{@link android.media.MediaPlayer MediaPlayer} (all available formats)</li> -<li>{@link android.media.MediaRecorder MediaRecorder} (all available formats)</li> -<li>{@link android.media.JetPlayer JetPlayer} (playback, JET content)</li> -<li>{@link android.media.SoundPool SoundPool} (sound management)</li> -</ol> - <h2>In this document</h2> <ol> <li><a href="#playback.html">Audio and Video Playback</a> @@ -32,6 +24,14 @@ page.title=Audio and Video <li><a href="#capture">Audio Capture</a></li> </ol> +<h2>Key classes</h2> +<ol> +<li>{@link android.media.MediaPlayer MediaPlayer}</li> +<li>{@link android.media.MediaRecorder MediaRecorder}</li> +<li>{@link android.media.JetPlayer JetPlayer}</li> +<li>{@link android.media.SoundPool SoundPool}</li> +</ol> + <h2>See also</h2> <ol> <li><a href="{@docRoot}guide/topics/data/data-storage.html">Data Storage</a></li> diff --git a/docs/html/guide/topics/providers/content-providers.jd b/docs/html/guide/topics/providers/content-providers.jd index da4e7a1..2aed5e1 100644 --- a/docs/html/guide/topics/providers/content-providers.jd +++ b/docs/html/guide/topics/providers/content-providers.jd @@ -3,12 +3,6 @@ page.title=Content Providers <div id="qv-wrapper"> <div id="qv"> -<h2>Key classes</h2> -<ol> -<li>{@link android.content.ContentProvider}</li> -<li>{@link android.content.ContentResolver}</li> -<li>{@link android.database.Cursor}</li> -</ol> <h2>In this document</h2> <ol> @@ -18,6 +12,13 @@ page.title=Content Providers <li><a href="#creating">Creating a content provider</a></li> <li><a href="#urisum">Content URI summary</a></li> </ol> + +<h2>Key classes</h2> +<ol> +<li>{@link android.content.ContentProvider}</li> +<li>{@link android.content.ContentResolver}</li> +<li>{@link android.database.Cursor}</li> +</ol> </div> </div> diff --git a/docs/html/guide/topics/search/adding-custom-suggestions.jd b/docs/html/guide/topics/search/adding-custom-suggestions.jd index ce0c619..c8f06b9 100644 --- a/docs/html/guide/topics/search/adding-custom-suggestions.jd +++ b/docs/html/guide/topics/search/adding-custom-suggestions.jd @@ -33,7 +33,7 @@ parent.link=index.html <li>{@link android.content.ContentProvider}</li> </ol> -<h2>Related Samples</h2> +<h2>Related samples</h2> <ol> <li><a href="{@docRoot}resources/samples/SearchableDictionary/index.html">Searchable Dictionary</a></li> diff --git a/docs/html/guide/topics/search/index.jd b/docs/html/guide/topics/search/index.jd index 78e0be2..f563715 100644 --- a/docs/html/guide/topics/search/index.jd +++ b/docs/html/guide/topics/search/index.jd @@ -13,7 +13,7 @@ page.title=Search <ol> <li><a href="searchable-config.html">Searchable Configuration</a></li> </ol> -<h2>Related Samples</h2> +<h2>Related samples</h2> <ol> <li><a href="{@docRoot}resources/samples/SearchableDictionary/index.html">Searchable Dictionary</a></li> diff --git a/docs/html/guide/topics/search/search-dialog.jd b/docs/html/guide/topics/search/search-dialog.jd index 49c6627..49938b4 100644 --- a/docs/html/guide/topics/search/search-dialog.jd +++ b/docs/html/guide/topics/search/search-dialog.jd @@ -29,7 +29,7 @@ parent.link=index.html <li>{@link android.app.SearchManager}</li> </ol> -<h2>Related Samples</h2> +<h2>Related samples</h2> <ol> <li><a href="{@docRoot}resources/samples/SearchableDictionary/index.html">Searchable Dictionary</a></li> diff --git a/docs/html/guide/topics/testing/testing_android.jd b/docs/html/guide/topics/testing/testing_android.jd index 46ba769..935aaf9 100755 --- a/docs/html/guide/topics/testing/testing_android.jd +++ b/docs/html/guide/topics/testing/testing_android.jd @@ -52,7 +52,7 @@ page.title=Testing and Instrumentation </ol> </li> </ol> - <h2>Key Classes</h2> + <h2>Key classes</h2> <ol> <li>{@link android.test.InstrumentationTestRunner}</li> <li>{@link android.test.ActivityInstrumentationTestCase2}</li> @@ -61,7 +61,7 @@ page.title=Testing and Instrumentation <li>{@link android.test.ProviderTestCase2}</li> <li>{@link android.test.ServiceTestCase}</li> </ol> - <h2>Related Tutorials</h2> + <h2>Related tutorials</h2> <ol> <li> <a href="{@docRoot}resources/tutorials/testing/helloandroid_test.html">Hello, Testing</a> @@ -70,7 +70,7 @@ page.title=Testing and Instrumentation <a href="{@docRoot}resources/tutorials/testing/activity_test.html">Activity Testing</a> </li> </ol> - <h2>See Also</h2> + <h2>See also</h2> <ol> <li> <a href="{@docRoot}guide/developing/testing/testing_eclipse.html">Testing in Eclipse, with ADT</a> diff --git a/docs/html/guide/topics/ui/binding.jd b/docs/html/guide/topics/ui/binding.jd index 6ac0bb0..26364ee 100644 --- a/docs/html/guide/topics/ui/binding.jd +++ b/docs/html/guide/topics/ui/binding.jd @@ -11,11 +11,11 @@ parent.link=index.html <li><a href="#HandlingUserSelections">Handling User Selections</a></li> </ol> - <h2>See also</h2> + <h2>Related tutorials</h2> <ol> - <li><a href="{@docRoot}resources/tutorials/views/hello-spinner.html">Hello Spinner tutorial</a></li> - <li><a href="{@docRoot}resources/tutorials/views/hello-listview.html">Hello ListView tutorial</a></li> - <li><a href="{@docRoot}resources/tutorials/views/hello-gridview.html">Hello GridView tutorial</a></li> + <li><a href="{@docRoot}resources/tutorials/views/hello-spinner.html">Spinner</a></li> + <li><a href="{@docRoot}resources/tutorials/views/hello-listview.html">List View</a></li> + <li><a href="{@docRoot}resources/tutorials/views/hello-gridview.html">Grid View</a></li> </ol> </div> </div> diff --git a/docs/html/guide/topics/ui/declaring-layout.jd b/docs/html/guide/topics/ui/declaring-layout.jd index 5c12db9..fe641a2 100644 --- a/docs/html/guide/topics/ui/declaring-layout.jd +++ b/docs/html/guide/topics/ui/declaring-layout.jd @@ -5,12 +5,6 @@ parent.link=index.html <div id="qv-wrapper"> <div id="qv"> - <h2>Key classes</h2> - <ol> - <li>{@link android.view.View}</li> - <li>{@link android.view.ViewGroup}</li> - <li>{@link android.view.ViewGroup.LayoutParams}</li> - </ol> <h2>In this document</h2> <ol> <li><a href="#write">Write the XML</a></li> @@ -26,6 +20,12 @@ parent.link=index.html <li><a href="#example">Example Layout</a></li> </ol> + <h2>Key classes</h2> + <ol> + <li>{@link android.view.View}</li> + <li>{@link android.view.ViewGroup}</li> + <li>{@link android.view.ViewGroup.LayoutParams}</li> + </ol> </div> </div> diff --git a/docs/html/guide/topics/ui/dialogs.jd b/docs/html/guide/topics/ui/dialogs.jd index 74b544b..1a997f9 100644 --- a/docs/html/guide/topics/ui/dialogs.jd +++ b/docs/html/guide/topics/ui/dialogs.jd @@ -5,10 +5,6 @@ parent.link=index.html <div id="qv-wrapper"> <div id="qv"> - <h2>Key classes</h2> - <ol> - <li>{@link android.app.Dialog}</li> - </ol> <h2>In this document</h2> <ol> <li><a href="#ShowingADialog">Showing a Dialog</a></li> @@ -26,6 +22,11 @@ parent.link=index.html </li> <li><a href="#CustomDialog">Creating a Custom Dialog</a></li> </ol> + + <h2>Key classes</h2> + <ol> + <li>{@link android.app.Dialog}</li> + </ol> </div> </div> diff --git a/docs/html/guide/topics/ui/index.jd b/docs/html/guide/topics/ui/index.jd index abcf6be..375c9fe 100644 --- a/docs/html/guide/topics/ui/index.jd +++ b/docs/html/guide/topics/ui/index.jd @@ -4,13 +4,6 @@ page.title=User Interface <div id="qv-wrapper"> <div id="qv"> - <h2>Key classes</h2> - <ol> - <li>{@link android.view.View}</li> - <li>{@link android.view.ViewGroup}</li> - <li>{@link android.widget Widget classes}</li> - </ol> - <h2>In this document</h2> <ol> <li><a href="#ViewHierarchy">View Hierarchy</a></li> @@ -25,6 +18,13 @@ page.title=User Interface </ol> </li> </ol> + + <h2>Key classes</h2> + <ol> + <li>{@link android.view.View}</li> + <li>{@link android.view.ViewGroup}</li> + <li>{@link android.widget Widget classes}</li> + </ol> </div> </div> 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> diff --git a/docs/html/guide/topics/ui/ui-events.jd b/docs/html/guide/topics/ui/ui-events.jd index ccef64f..7d7bfaf 100644 --- a/docs/html/guide/topics/ui/ui-events.jd +++ b/docs/html/guide/topics/ui/ui-events.jd @@ -13,9 +13,9 @@ parent.link=index.html <li><a href="#HandlingFocus">Handling Focus</a></li> </ol> - <h2>See also</h2> + <h2>Related tutorials</h2> <ol> - <li><a href="{@docRoot}resources/tutorials/views/hello-formstuff.html">Hello Form Stuff tutorial</a></li> + <li><a href="{@docRoot}resources/tutorials/views/hello-formstuff.html">Form Stuff</a></li> </ol> </div> </div> diff --git a/docs/html/guide/topics/wireless/bluetooth.jd b/docs/html/guide/topics/wireless/bluetooth.jd index a8ff007..fa2875b 100644 --- a/docs/html/guide/topics/wireless/bluetooth.jd +++ b/docs/html/guide/topics/wireless/bluetooth.jd @@ -3,14 +3,13 @@ page.title=Bluetooth <div id="qv-wrapper"> <div id="qv"> - <h2>Key Classes</h2> - <ol> - <li>{@link android.bluetooth.BluetoothAdapter}</li> - <li>{@link android.bluetooth.BluetoothDevice}</li> - <li>{@link android.bluetooth.BluetoothSocket}</li> - <li>{@link android.bluetooth.BluetoothServerSocket}</li> - </ol> + <h2>Quickview</h2> + <ul> + <li>Android's bluetooth APIs allow your application to perform wireless data transactions with +other devices</li> + </ul> + <h2>In this document</h2> <ol> <li><a href="#TheBasics">The Basics</a></li> @@ -33,11 +32,18 @@ page.title=Bluetooth </li> <li><a href="#ManagingAConnection">Managing a Connection</a></li> </ol> + + <h2>Key classes</h2> + <ol> + <li>{@link android.bluetooth.BluetoothAdapter}</li> + <li>{@link android.bluetooth.BluetoothDevice}</li> + <li>{@link android.bluetooth.BluetoothSocket}</li> + <li>{@link android.bluetooth.BluetoothServerSocket}</li> + </ol> - <h2>See also</h2> + <h2>Related samples</h2> <ol> - <li><a href="{@docRoot}resources/samples/BluetoothChat/index.html">Bluetooth Chat sample - app</a></li> + <li><a href="{@docRoot}resources/samples/BluetoothChat/index.html">Bluetooth Chat</a></li> </ol> </div> |