diff options
| -rw-r--r-- | api/current.xml | 22 | ||||
| -rw-r--r-- | core/res/res/values/public.xml | 2 | ||||
| -rw-r--r-- | core/res/res/values/styles.xml | 6 |
3 files changed, 30 insertions, 0 deletions
diff --git a/api/current.xml b/api/current.xml index f93fcb58e566..f60b8fe7b7d5 100644 --- a/api/current.xml +++ b/api/current.xml @@ -16158,6 +16158,17 @@ visibility="public" > </field> +<field name="Widget_Holo_Light_Tab" + type="int" + transient="false" + volatile="false" + value="16974049" + static="true" + final="true" + deprecated="not deprecated" + visibility="public" +> +</field> <field name="Widget_Holo_Light_TabWidget" type="int" transient="false" @@ -16389,6 +16400,17 @@ visibility="public" > </field> +<field name="Widget_Holo_Tab" + type="int" + transient="false" + volatile="false" + value="16974048" + static="true" + final="true" + deprecated="not deprecated" + visibility="public" +> +</field> <field name="Widget_Holo_TabWidget" type="int" transient="false" diff --git a/core/res/res/values/public.xml b/core/res/res/values/public.xml index 510797e5d2cd..63097c1e8a22 100644 --- a/core/res/res/values/public.xml +++ b/core/res/res/values/public.xml @@ -1557,6 +1557,8 @@ <public type="style" name="Widget.Holo.Light.ActionButton.CloseMode" /> <public type="style" name="Widget.Holo.Light.ActionBar" /> <public type="style" name="Widget.Holo.Button.Borderless" /> + <public type="style" name="Widget.Holo.Tab" /> + <public type="style" name="Widget.Holo.Light.Tab" /> <public type="string" name="selectTextMode" /> </resources> diff --git a/core/res/res/values/styles.xml b/core/res/res/values/styles.xml index 047d41ee8d7a..e364418420b3 100644 --- a/core/res/res/values/styles.xml +++ b/core/res/res/values/styles.xml @@ -1595,6 +1595,9 @@ <item name="android:paddingRight">16dip</item> </style> + <style name="Widget.Holo.Tab" parent="Widget.Holo.ActionBarView_TabView"> + </style> + <style name="Widget.Holo.ActionBarView_TabBar" parent="Widget.ActionBarView_TabBar"> </style> @@ -1881,6 +1884,9 @@ <style name="Widget.Holo.Light.ActionBarView_TabView" parent="Widget.Holo.ActionBarView_TabView"> </style> + <style name="Widget.Holo.Light.Tab" parent="Widget.Holo.Light.ActionBarView_TabView"> + </style> + <style name="Widget.Holo.Light.ActionBarView_TabBar" parent="Widget.Holo.ActionBarView_TabBar"> </style> |