Add pref for notification swipe direction

And move that and other settings under an 'advanced' category

Test: robotests
Fixes: 124099692
Change-Id: I89df276a8bc1cd56ce8530239ca02b2c4b43fa65
This commit is contained in:
Julia Reynolds
2019-02-20 10:33:15 -05:00
parent 7646786cd3
commit 14289bd356
5 changed files with 265 additions and 41 deletions

View File

@@ -1098,6 +1098,17 @@
<item>zen_mode_from_none</item>
</string-array>
<!--String arrays for notification swipe direction -->
<string-array name="swipe_direction_titles">
<item>@string/swipe_direction_rtl</item>
<item>@string/swipe_direction_ltr</item>
</string-array>
<string-array name="swipe_direction_values">
<item>1</item>
<item>0</item>
</string-array>
<string-array name="wifi_metered_entries">
<item>Detect automatically</item>
<item>Treat as metered</item>

View File

@@ -7617,6 +7617,15 @@
<!-- Configure Notifications: Title for the notification bubbles option. [CHAR LIMIT=60] -->
<string name="notification_bubbles_title">Allow notification bubbles</string>
<!-- Configure notifications: title for swipe direction [CHAR LIMIT=60] -->
<string name="swipe_direction_title">Swipe actions</string>
<!-- Configure notifications: value for swipe direction [CHAR LIMIT=100] -->
<string name="swipe_direction_ltr">Swipe right to dismiss, left to show menu</string>
<!-- Configure notifications: value for swipe direction [CHAR LIMIT=100] -->
<string name="swipe_direction_rtl">Swipe left to dismiss, right to show menu</string>
<!-- Configure Notifications: Title for the pulse notification light option. [CHAR LIMIT=30] -->
<string name="notification_pulse_title">Blink light</string>