summaryrefslogtreecommitdiff
path: root/res/values
diff options
context:
space:
mode:
Diffstat (limited to 'res/values')
-rw-r--r--res/values/attrs.xml4
-rw-r--r--res/values/strings.xml3
-rw-r--r--res/values/styles.xml10
3 files changed, 13 insertions, 4 deletions
diff --git a/res/values/attrs.xml b/res/values/attrs.xml
new file mode 100644
index 0000000..75347d8
--- /dev/null
+++ b/res/values/attrs.xml
@@ -0,0 +1,4 @@
+<?xml version="1.0" encoding="utf-8"?>
+<resources>
+ <attr name="viewComicsBackground" format="reference|color" />
+</resources> \ No newline at end of file
diff --git a/res/values/strings.xml b/res/values/strings.xml
index b55145f..3d5cac4 100644
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -19,7 +19,7 @@
<string name="cancel">Cancel</string>
<string name="comics_directory_default">/mnt/sdcard/Comics</string>
<string name="prefs_reading">Reading</string>
- <string name="prefs_dark_theme">Use dark theme</string>
+ <string name="prefs_dark_theme">Dark theme</string>
<string name="dialog_open_location">Open location</string>
<string name="dialog_location_beginning">Beginning</string>
<string name="dialog_location_furthest">Furthest read location</string>
@@ -63,4 +63,5 @@
<string name="sync_running_in_test_mode">Sync running in test mode.</string>
<string name="reset_remove_synced_progress">Would you like to remove synced progress too?</string>
<string name="error_cant_open_file">Can\'t open file: %1$s</string>
+ <string name="prefs_prevent_screen_sleep">Keep screen awake</string>
</resources> \ No newline at end of file
diff --git a/res/values/styles.xml b/res/values/styles.xml
index 84df662..3c19d3f 100644
--- a/res/values/styles.xml
+++ b/res/values/styles.xml
@@ -1,6 +1,10 @@
<resources>
- <style name="AppTheme" parent="Theme.Sherlock.Light.DarkActionBar" />
- <style name="DarkTheme" parent="Theme.Sherlock" />
-
+ <style name="AppTheme" parent="Theme.Sherlock.Light.DarkActionBar">
+ <item name="viewComicsBackground">@android:color/transparent</item>
+ </style>
+
+ <style name="DarkTheme" parent="Theme.Sherlock">
+ <item name="viewComicsBackground">@android:color/black</item>
+ </style>
</resources> \ No newline at end of file