diff --git a/docs/html/resources/tutorials/views/hello-tabwidget.jd b/docs/html/resources/tutorials/views/hello-tabwidget.jd
index abeb4bfff2d9a..9bafd84e26c15 100644
--- a/docs/html/resources/tutorials/views/hello-tabwidget.jd
+++ b/docs/html/resources/tutorials/views/hello-tabwidget.jd
@@ -39,19 +39,25 @@ public class ArtistsActivity extends Activity {
android.widget.TextView}, give it some text and set that as the content. Duplicate this for
each of the three activities, and add the corresponding <activity/> tags to the Android Manifest file.
-
-
+
+
Copy these images for use in this tutorial. Save them into your project
-res/drawable/ directory. You now need to create a {@link
-android.graphics.drawable.Drawable} with XML that specifies which image
-to use for each state. Create a new file in res/drawable/ named
-ic_tab_artists.xml and insert the following:
For this tutorial, you can copy these images and use them for all three tabs. (When you +create tabs in your own application, you should create customized tab icons.)
+Now create a state-list drawable +that specifies which image to use for each tab state:
+res/drawable/ directory.res/drawable/
+named ic_tab_artists.xml and insert the following:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
@@ -62,9 +68,13 @@ to use for each state. Create a new file in res/drawable/ named
<item android:drawable="@drawable/ic_tab_artists_white" />
</selector>
- This is an XML definition for a {@link android.graphics.drawable.Drawable}, which you will -reference as the image for a tab. When the image state changes, the image will automatically -switch between the images defined here.
+This is a state-list drawable, +which you will apply as the tab image. When the tab state changes, the tab icon will +automatically switch between the images defined here.
+res/layout/main.xml file and insert the following:
@@ -187,7 +197,7 @@ calling {@link android.widget.TabHost#addTab(TabHost.TabSpec)}.
-Your application should look like this:
+Your application should look like this (though your icons may be different):
References