diff --git a/docs/html/guide/topics/ui/binding.jd b/docs/html/guide/topics/ui/binding.jd index e8b49d553ebce..a4fd25c2825e9 100644 --- a/docs/html/guide/topics/ui/binding.jd +++ b/docs/html/guide/topics/ui/binding.jd @@ -10,13 +10,6 @@ parent.link=index.html
  • Filling the Layout with Data
  • Handling User Selections
  • - -

    Related tutorials

    -
      -
    1. Spinner
    2. -
    3. List View
    4. -
    5. Grid View
    6. -
    @@ -81,8 +74,8 @@ mHistoryView.setOnItemClickListener(mMessageClickedHandler);
    -

    For more discussion on how to create different AdapterViews, read the following tutorials: -Hello Spinner, -Hello ListView, and -Hello GridView. +

    For more discussion on how to create different AdapterViews, read the following guides: +Spinner, +List View, and +Grid View.

    diff --git a/docs/html/guide/topics/ui/ui-events.jd b/docs/html/guide/topics/ui/ui-events.jd index 707d4b1cfb554..6d41b15f6c17e 100644 --- a/docs/html/guide/topics/ui/ui-events.jd +++ b/docs/html/guide/topics/ui/ui-events.jd @@ -13,10 +13,6 @@ parent.link=index.html
  • Handling Focus
  • -

    Related tutorials

    -
      -
    1. Form Stuff
    2. -
    diff --git a/docs/html/guide/webapps/webview.jd b/docs/html/guide/webapps/webview.jd index d2b253214ba16..c87be06e76457 100644 --- a/docs/html/guide/webapps/webview.jd +++ b/docs/html/guide/webapps/webview.jd @@ -33,11 +33,6 @@ layout
  • {@link android.webkit.WebViewClient}
  • -

    Related tutorials

    -
      -
    1. Web View
    2. -
    - diff --git a/docs/html/training/implementing-navigation/lateral.jd b/docs/html/training/implementing-navigation/lateral.jd index 9a31d7aadd0d5..c8f57a20cce3e 100644 --- a/docs/html/training/implementing-navigation/lateral.jd +++ b/docs/html/training/implementing-navigation/lateral.jd @@ -43,7 +43,8 @@ next.link=ancestral.html

    Tabs allow the user to navigate between sibling screens by selecting the appropriate tab indicator available at the top of the display. In Android 3.0 and later, tabs are implemented using the {@link android.app.ActionBar} class, and are generally set up in {@link android.app.Activity#onCreate Activity.onCreate()}. In some cases, such as when horizontal space is limited and/or the number of tabs is large, an appropriate alternate presentation for tabs is a dropdown list (sometimes implemented using a {@link android.widget.Spinner}).

    -

    In previous versions of Android, tabs could be implemented using a {@link android.widget.TabWidget} and {@link android.widget.TabHost}. For details, see the Hello, Views tutorial.

    +

    In previous versions of Android, tabs could be implemented using a +{@link android.widget.TabWidget} and {@link android.widget.TabHost}.

    As of Android 3.0, however, you should use either {@link android.app.ActionBar#NAVIGATION_MODE_TABS} or {@link android.app.ActionBar#NAVIGATION_MODE_LIST} along with the {@link android.app.ActionBar} class.