summaryrefslogtreecommitdiffstats
path: root/res/values
diff options
context:
space:
mode:
Diffstat (limited to 'res/values')
-rw-r--r--res/values/dimensions.xml2
-rw-r--r--res/values/strings.xml4
-rw-r--r--res/values/styles.xml7
3 files changed, 11 insertions, 2 deletions
diff --git a/res/values/dimensions.xml b/res/values/dimensions.xml
index d0ee3a6..8f19a71 100644
--- a/res/values/dimensions.xml
+++ b/res/values/dimensions.xml
@@ -22,4 +22,6 @@
<dimen name="live_wallpaper_thumbnail_text_offset">12dip</dimen>
<dimen name="live_wallpaper_thumbnail_width">75dip</dimen>
<dimen name="live_wallpaper_thumbnail_height">75dip</dimen>
+ <dimen name="dialog_content_inset">15dip</dimen>
+ <dimen name="live_wallpaper_preview_button_width">160dip</dimen>
</resources>
diff --git a/res/values/strings.xml b/res/values/strings.xml
index c070c61..cab49ce 100644
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -24,7 +24,7 @@
<string name="application_name">Live Wallpaper Picker</string>
<!-- Title for the screen that lets the user choose a live wallpaper to use
for the system. -->
- <string name="live_wallpaper_picker_title">Live wallpapers</string>
+ <string name="live_wallpaper_picker_title">Select live wallpaper</string>
<!-- Title for the screen that lets the user preview a live wallpaper. -->
<string name="live_wallpaper_preview_title">Live wallpaper preview</string>
<!-- List item for configuring the current wallpaper -->
@@ -39,5 +39,7 @@
<string name="wallpaper_title_and_author"><xliff:g id="title" example="Galaxy">%1$s</xliff:g> by <xliff:g id="author" example="Google">%2$s</xliff:g></string>
<!-- Message, tells the user the selected live wallpaper is loading. -->
<string name="live_wallpaper_loading">Loading live wallpaper…</string>
+ <!-- Button label, action, cancels the wallpaper picker dialog [CHAR_LIMIT=40]-->
+ <string name="wallpaper_cancel">Cancel</string>
</resources>
diff --git a/res/values/styles.xml b/res/values/styles.xml
index a55fbdb..8684f16 100644
--- a/res/values/styles.xml
+++ b/res/values/styles.xml
@@ -28,9 +28,14 @@
<item name="android:gravity">left</item>
</style>
- <style name="Preview" parent="@android:style/Theme.NoTitleBar">
+ <style name="Preview" parent="android:Theme.Holo">
+ <item name="android:windowNoTitle">true</item>
<item name="android:windowBackground">@android:color/transparent</item>
<item name="android:colorBackgroundCacheHint">@null</item>
<item name="android:windowAnimationStyle">@android:style/Animation.Activity</item>
</style>
+
+ <style name="LivePickerTheme" parent="android:style/Theme.Holo">
+ <item name="android:windowNoTitle">true</item>
+ </style>
</resources>