From b6802e7b584f276e33c86bc7275c77edb137599c Mon Sep 17 00:00:00 2001 From: Scott Main Date: Wed, 1 Feb 2012 11:52:02 -0800 Subject: docs: fix action bar style example Change-Id: I9e02c3b3ade17c832b97836c03cf023fe6ea9340 --- docs/html/guide/topics/ui/actionbar.jd | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'docs') diff --git a/docs/html/guide/topics/ui/actionbar.jd b/docs/html/guide/topics/ui/actionbar.jd index b83bde7..6217812 100644 --- a/docs/html/guide/topics/ui/actionbar.jd +++ b/docs/html/guide/topics/ui/actionbar.jd @@ -1421,7 +1421,7 @@ href="#ActionView">action views. (Added in API level 14.) </style> <!-- style for the action bar tab text --> - <style name="CustomTabTextStyle"> + <style name="CustomTabTextStyle" parent="@android:style/TextAppearance.Holo"> <item name="android:textColor">#2456c2</item> </style> </resources> @@ -1437,8 +1437,7 @@ action bar styles you want to change without re-implementing the styles you want manifest file like this:

-<application android:theme="@style/CustomActivityTheme"
-             ... />
+<application android:theme="@style/CustomActivityTheme" ... />
 

For more information about using style and theme resources in your application, read -

For example, if you want to change the action bar's background, you could use the following +

For example, if you want to change the action bar's background, you can use the following styles:

@@ -1465,14 +1464,15 @@ styles:

<resources> <!-- the theme applied to the application or activity --> <style name="CustomActivityTheme" parent="@android:style/Theme.Holo"> -   <item name="android:actionBarTabTextStyle">@style/customTabTextStyle</item> + <item name="android:actionBarStyle">@style/MyActionBar</item> <!-- other activity and action bar styles here --> </style> - <!-- style for the action bar, simply to change the background --> - <style parent="@android:style/Widget.Holo.ActionBar"> + <!-- style for the action bar backgrounds --> + <style name="MyActionBar" parent="@android:style/Widget.Holo.ActionBar"> <item name="android:background">@drawable/ab_background</item> - <item name="android:backgroundSplit">@drawable/ab_background</item> + <item name="android:backgroundStacked">@drawable/ab_background</item> + <item name="android:backgroundSplit">@drawable/ab_split_background</item> </style> </resources>
-- cgit v1.1