summaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
Diffstat (limited to 'res')
-rw-r--r--res/values/strings.xml5
-rw-r--r--res/xml/preferences.xml11
2 files changed, 16 insertions, 0 deletions
diff --git a/res/values/strings.xml b/res/values/strings.xml
index 669016b80..7b9540372 100644
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -316,6 +316,11 @@ s -->
<string name="preferences_interface_drawer_widgets_category">Widgets</string>
<string name="preferences_interface_drawer_widgets_join_apps_title">Join with Apps</string>
<string name="preferences_interface_drawer_widgets_join_apps_summary">Swipe from apps drawer to widgets drawer without changing tabs</string>
+ <string name="preferences_interface_drawer_indicator_category">Indicator</string>
+ <string name="preferences_interface_drawer_indicator_enable_title">Show Page Indicator</string>
+ <string name="preferences_interface_drawer_indicator_enable_summary">Show current page indicator at the bottom of the screen</string>
+ <string name="preferences_interface_drawer_indicator_fade_title">Fade Indicator</string>
+ <string name="preferences_interface_drawer_indicator_fade_summary">Fade the indicator after the page has changed</string>
<!-- Dock -->
<string name="preferences_interface_dock_title">Dock</string>
diff --git a/res/xml/preferences.xml b/res/xml/preferences.xml
index d1585e2cd..a39c43407 100644
--- a/res/xml/preferences.xml
+++ b/res/xml/preferences.xml
@@ -77,6 +77,17 @@
android:summary="@string/preferences_interface_drawer_widgets_join_apps_summary"
android:defaultValue="true" />
</PreferenceCategory>
+ <PreferenceCategory android:title="@string/preferences_interface_drawer_indicator_category">
+ <CheckBoxPreference android:key="ui_drawer_indicator_enable"
+ android:title="@string/preferences_interface_drawer_indicator_enable_title"
+ android:summary="@string/preferences_interface_drawer_indicator_enable_summary"
+ android:defaultValue="true" />
+ <CheckBoxPreference android:key="ui_drawer_indicator_fade"
+ android:title="@string/preferences_interface_drawer_indicator_fade_title"
+ android:summary="@string/preferences_interface_drawer_indicator_fade_summary"
+ android:defaultValue="true"
+ android:dependency="ui_drawer_indicator_enable" />
+ </PreferenceCategory>
</PreferenceScreen>
<!-- Dock -->