diff options
| author | Jeff Sharkey <jsharkey@android.com> | 2010-12-08 16:32:40 -0800 |
|---|---|---|
| committer | Jeff Sharkey <jsharkey@android.com> | 2010-12-08 16:37:02 -0800 |
| commit | b119b6cfcfc4cad6e5c0a80f09607ba6967a911d (patch) | |
| tree | eab16dbdd744d0874d587eb41578a0e14159b43e | |
| parent | c57406cdfa1925c3474e87865c51950b76ee0347 (diff) | |
| download | frameworks_base-b119b6cfcfc4cad6e5c0a80f09607ba6967a911d.zip frameworks_base-b119b6cfcfc4cad6e5c0a80f09607ba6967a911d.tar.gz frameworks_base-b119b6cfcfc4cad6e5c0a80f09607ba6967a911d.tar.bz2 | |
SegmentedButton style should inherit.
Change-Id: Idd3bc5e6de3d64fd681f69ba1de3ac88576c9ca7
| -rw-r--r-- | core/res/res/values/styles.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/res/res/values/styles.xml b/core/res/res/values/styles.xml index 743169a..c00e59a 100644 --- a/core/res/res/values/styles.xml +++ b/core/res/res/values/styles.xml @@ -1381,7 +1381,7 @@ <item name="background">@android:drawable/btn_default_holo_dark</item> </style> - <style name="Holo.SegmentedButton"> + <style name="Holo.SegmentedButton" parent="SegmentedButton"> <item name="android:background">@android:drawable/btn_default_holo_dark</item> </style> @@ -1759,7 +1759,7 @@ <item name="android:background">@null</item> </style> - <style name="Holo.Light.SegmentedButton"> + <style name="Holo.Light.SegmentedButton" parent="SegmentedButton"> <item name="android:background">@android:drawable/btn_default_holo_light</item> </style> |
