diff options
| author | Samuel Tardieu <sam@rfc1149.net> | 2014-08-26 11:53:42 +0200 |
|---|---|---|
| committer | Samuel Tardieu <sam@rfc1149.net> | 2014-08-26 11:53:42 +0200 |
| commit | 314d19c50904bb32a56f1343fd9095f51a62ad9f (patch) | |
| tree | 27daccbc03aa9e013ca1855cff1273eb593333cb | |
| parent | 7f817343aedd19342e851ebb9d1b5a58e176114d (diff) | |
| download | cgeo-314d19c50904bb32a56f1343fd9095f51a62ad9f.zip cgeo-314d19c50904bb32a56f1343fd9095f51a62ad9f.tar.gz cgeo-314d19c50904bb32a56f1343fd9095f51a62ad9f.tar.bz2 | |
Add missing XML namespace information
| -rw-r--r-- | main/res/values/showcaseview_styles.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/main/res/values/showcaseview_styles.xml b/main/res/values/showcaseview_styles.xml index 864982f..7bbc902 100644 --- a/main/res/values/showcaseview_styles.xml +++ b/main/res/values/showcaseview_styles.xml @@ -14,7 +14,7 @@ ~ limitations under the License. --> -<resources> +<resources xmlns:android="http://schemas.android.com/apk/res/android"> <style name="ShowcaseButton"> <item name="android:layout_width">wrap_content</item> @@ -30,14 +30,14 @@ <item name="sv_titleTextAppearance">@style/TextAppearance.ShowcaseView.Title</item> <item name="sv_detailTextAppearance">@style/TextAppearance.ShowcaseView.Detail.Light</item> <item name="sv_backgroundColor">#3333B5E5</item> - <item name="sv_buttonText">@string/ok</item> + <item name="sv_buttonText">@android:string/ok</item> </style> <style name="ShowcaseView"> <item name="sv_titleTextAppearance">@style/TextAppearance.ShowcaseView.Title</item> <item name="sv_detailTextAppearance">@style/TextAppearance.ShowcaseView.Detail</item> <item name="sv_backgroundColor">#EE223344</item> - <item name="sv_buttonText">@string/ok</item> + <item name="sv_buttonText">@android:string/ok</item> </style> <style name="TextAppearance.ShowcaseView.Title" parent="android:style/TextAppearance.Large"> |
