maxwen | 3b53c54 | 2017-08-29 18:27:15 +0200 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
Juan Ezquerro LLanes | fd4c3d7 | 2018-06-12 21:34:26 +0200 | [diff] [blame] | 2 | |
maxwen | 3b53c54 | 2017-08-29 18:27:15 +0200 | [diff] [blame] | 3 | <!-- Copyright (C) 2017 The OmniROM Project |
| 4 | |
| 5 | This program is free software: you can redistribute it and/or modify |
| 6 | it under the terms of the GNU General Public License as published by |
| 7 | the Free Software Foundation, either version 2 of the License, or |
| 8 | (at your option) any later version. |
| 9 | |
| 10 | This program is distributed in the hope that it will be useful, |
| 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 | GNU General Public License for more details. |
| 14 | |
| 15 | You should have received a copy of the GNU General Public License |
| 16 | along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 17 | --> |
| 18 | <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" |
Juan Ezquerro LLanes | fd4c3d7 | 2018-06-12 21:34:26 +0200 | [diff] [blame] | 19 | xmlns:settings="http://schemas.android.com/apk/res-auto" |
maxwen | 0c7e4e2 | 2018-03-09 18:36:45 +0100 | [diff] [blame] | 20 | android:key="bars_settings" |
maxwen | 3d9153b | 2018-04-19 23:00:12 +0200 | [diff] [blame] | 21 | android:title="@string/custom_bars_settings_title" > |
maxwen | 3b53c54 | 2017-08-29 18:27:15 +0200 | [diff] [blame] | 22 | |
| 23 | <PreferenceCategory |
| 24 | android:key="category_statusbar" |
| 25 | android:title="@string/statusbar_title"> |
| 26 | |
Juan Ezquerro LLanes | efe2ebe | 2018-05-22 23:14:11 +0200 | [diff] [blame] | 27 | <org.omnirom.omnilib.preference.SystemSettingSwitchPreference |
maxwen | 3b53c54 | 2017-08-29 18:27:15 +0200 | [diff] [blame] | 28 | android:key="double_tap_sleep_gesture" |
| 29 | android:title="@string/double_tap_to_sleep_title" |
| 30 | android:summary="@string/double_tap_to_sleep_summary" |
| 31 | android:defaultValue="false" /> |
Marko Man | 817fc72 | 2017-10-02 13:30:52 +0200 | [diff] [blame] | 32 | |
Juan Ezquerro LLanes | efe2ebe | 2018-05-22 23:14:11 +0200 | [diff] [blame] | 33 | <org.omnirom.omnilib.preference.SystemSettingSwitchPreference |
Sebastian | 4e4c0e7 | 2018-01-06 00:57:17 +0100 | [diff] [blame] | 34 | android:key="status_bar_brightness_control" |
| 35 | android:title="@string/status_bar_toggle_brightness" |
| 36 | android:summary="@string/status_bar_toggle_brightness_summary" |
| 37 | android:defaultValue="false" /> |
| 38 | |
Juan Ezquerro LLanes | efe2ebe | 2018-05-22 23:14:11 +0200 | [diff] [blame] | 39 | <org.omnirom.omnilib.preference.SystemSettingSwitchPreference |
Marko Man | 817fc72 | 2017-10-02 13:30:52 +0200 | [diff] [blame] | 40 | android:key="status_bar_ime_notification" |
| 41 | android:title="@string/status_bar_ime_notification_title" |
| 42 | android:summary="@string/status_bar_ime_notification_summary" |
| 43 | android:defaultValue="true"/> |
maxwen | 52748b6 | 2017-01-05 00:19:34 +0100 | [diff] [blame] | 44 | |
maxwen | 939dbdf | 2017-10-08 18:30:35 +0200 | [diff] [blame] | 45 | <Preference |
maxwen | 52748b6 | 2017-01-05 00:19:34 +0100 | [diff] [blame] | 46 | android:key="category_network_traffic" |
| 47 | android:title="@string/network_traffic_title" |
maxwen | 939dbdf | 2017-10-08 18:30:35 +0200 | [diff] [blame] | 48 | android:summary="@string/network_traffic_summary" |
maxwen | 52748b6 | 2017-01-05 00:19:34 +0100 | [diff] [blame] | 49 | android:fragment="org.omnirom.omnigears.interfacesettings.NetworkTraffic" /> |
| 50 | |
Juan Ezquerro LLanes | efe2ebe | 2018-05-22 23:14:11 +0200 | [diff] [blame] | 51 | <org.omnirom.omnilib.preference.SystemSettingSwitchPreference |
maxwen | 638778c | 2018-02-12 00:13:55 +0100 | [diff] [blame] | 52 | android:key="status_bar_logo" |
| 53 | android:title="@string/status_bar_logo_title" |
| 54 | android:summary="@string/status_bar_logo_summary" |
| 55 | android:defaultValue="false" /> |
| 56 | |
| 57 | <Preference |
| 58 | android:key="statusbar_battery" |
| 59 | android:title="@string/battery_title" |
| 60 | android:summary="@string/statusbar_battery_summary" |
| 61 | android:fragment="org.omnirom.omnigears.interfacesettings.StatusbarBatterySettings" /> |
| 62 | |
Lars Greiss | afa7e4e | 2015-11-04 07:53:55 +0000 | [diff] [blame] | 63 | <Preference |
| 64 | android:key="statusbar_clock" |
| 65 | android:title="@string/clock_title" |
| 66 | android:summary="@string/statusbar_clock_summary" |
| 67 | android:fragment="org.omnirom.omnigears.interfacesettings.StatusbarClockSettings" /> |
| 68 | |
Matssa56 | b8377b8 | 2018-03-22 09:06:38 +0100 | [diff] [blame] | 69 | <ListPreference |
| 70 | android:key="quick_pulldown" |
| 71 | android:title="@string/quick_pulldown_title" |
| 72 | android:entries="@array/quick_pulldown_entries" |
| 73 | android:entryValues="@array/quick_pulldown_values" |
| 74 | android:persistent="false" /> |
maxwen | 939dbdf | 2017-10-08 18:30:35 +0200 | [diff] [blame] | 75 | </PreferenceCategory> |
| 76 | |
Marko Man | 817fc72 | 2017-10-02 13:30:52 +0200 | [diff] [blame] | 77 | <PreferenceCategory |
| 78 | android:key="category_navigationbar" |
| 79 | android:title="@string/navigationbar_title"> |
| 80 | |
Juan Ezquerro LLanes | efe2ebe | 2018-05-22 23:14:11 +0200 | [diff] [blame] | 81 | <org.omnirom.omnilib.preference.SystemSettingSwitchPreference |
Marko Man | 817fc72 | 2017-10-02 13:30:52 +0200 | [diff] [blame] | 82 | android:key="navigation_bar_ime_button" |
| 83 | android:title="@string/navigation_bar_ime_button_title" |
| 84 | android:summary="@string/navigation_bar_ime_button_summary" |
| 85 | android:defaultValue="true"/> |
| 86 | |
Juan Ezquerro LLanes | efe2ebe | 2018-05-22 23:14:11 +0200 | [diff] [blame] | 87 | <org.omnirom.omnilib.preference.SystemSettingSwitchPreference |
maxwen | 30b934e | 2018-05-21 02:28:28 +0200 | [diff] [blame] | 88 | android:key="navigation_bar_menu_arrow_keys" |
| 89 | android:title="@string/navigation_bar_menu_arrow_keys_title" |
| 90 | android:summary="@string/navigation_bar_menu_arrow_keys_summary" |
| 91 | android:defaultValue="fale"/> |
Juan Ezquerro LLanes | fd4c3d7 | 2018-06-12 21:34:26 +0200 | [diff] [blame] | 92 | </PreferenceCategory> |
maxwen | 30b934e | 2018-05-21 02:28:28 +0200 | [diff] [blame] | 93 | |
Juan Ezquerro LLanes | fd4c3d7 | 2018-06-12 21:34:26 +0200 | [diff] [blame] | 94 | <PreferenceCategory |
| 95 | android:key="quick_settings_category" |
| 96 | android:title="@string/quick_settings_category"> |
| 97 | |
| 98 | <org.omnirom.omnilib.preference.SeekBarPreference |
| 99 | android:key="qs_panel_alpha" |
| 100 | android:title="@string/qs_panel_alpha_title" |
| 101 | android:summary="@string/qs_panel_alpha_summary" |
| 102 | android:max="100" |
| 103 | settings:min="0" |
| 104 | settings:unitsRight="@string/unit_percent" |
| 105 | android:persistent="false" /> |
maxwen | 2ef717d | 2017-10-18 02:18:26 +0200 | [diff] [blame] | 106 | </PreferenceCategory> |
| 107 | |
| 108 | <PreferenceCategory |
Kyrylo Mikos | 639f07c | 2018-02-09 12:56:27 +0800 | [diff] [blame] | 109 | android:key="expanded_desktop_category" |
| 110 | android:title="@string/expanded_desktop_title"> |
| 111 | |
| 112 | <Preference |
| 113 | android:key="expanded_desktop_category" |
| 114 | android:title="@string/expanded_desktop_title" |
| 115 | android:summary="@string/expanded_desktop_summary" |
| 116 | android:fragment="org.omnirom.omnigears.interfacesettings.ExpandedDesktop" /> |
| 117 | |
maxwen | 89920f1 | 2018-07-05 12:57:17 +0200 | [diff] [blame] | 118 | <org.omnirom.omnilib.preference.SystemSettingSwitchPreference |
| 119 | android:key="splitscreen_force_systembar_enabled" |
| 120 | android:title="@string/splitscreen_force_systembar_enabled_title" |
| 121 | android:summary="@string/splitscreen_force_systembar_enabled_summary" |
| 122 | android:defaultValue="true" /> |
| 123 | |
Kyrylo Mikos | 639f07c | 2018-02-09 12:56:27 +0800 | [diff] [blame] | 124 | </PreferenceCategory> |
| 125 | |
maxwen | 545491e | 2018-05-12 19:00:08 +0200 | [diff] [blame] | 126 | <PreferenceCategory |
| 127 | android:key="aspect_ratio_category" |
| 128 | android:title="@string/aspect_ratio_category_title"> |
| 129 | |
Juan Ezquerro LLanes | efe2ebe | 2018-05-22 23:14:11 +0200 | [diff] [blame] | 130 | <org.omnirom.omnilib.preference.SystemSettingSwitchPreference |
maxwen | 545491e | 2018-05-12 19:00:08 +0200 | [diff] [blame] | 131 | android:key="aspect_ratio_apps_enabled" |
| 132 | android:title="@string/aspect_ratio_apps_enabled_title" |
| 133 | android:summary="@string/aspect_ratio_apps_enabled_summary" |
| 134 | android:defaultValue="false" /> |
| 135 | |
Juan Ezquerro LLanes | efe2ebe | 2018-05-22 23:14:11 +0200 | [diff] [blame] | 136 | <org.omnirom.omnilib.preference.AppMultiSelectListPreference |
maxwen | 545491e | 2018-05-12 19:00:08 +0200 | [diff] [blame] | 137 | android:dependency="aspect_ratio_apps_enabled" |
| 138 | android:key="aspect_ratio_apps_list" |
| 139 | android:persistent="false" |
| 140 | android:summary="@string/aspect_ratio_apps_list_summary" |
| 141 | android:title="@string/aspect_ratio_apps_list_title" /> |
| 142 | |
Juan Ezquerro LLanes | efe2ebe | 2018-05-22 23:14:11 +0200 | [diff] [blame] | 143 | <org.omnirom.omnilib.preference.ScrollAppsViewPreference |
maxwen | 545491e | 2018-05-12 19:00:08 +0200 | [diff] [blame] | 144 | android:dependency="aspect_ratio_apps_enabled" |
| 145 | android:key="aspect_ratio_apps_list_scroller" |
| 146 | android:persistent="false" |
| 147 | android:selectable="false" /> |
| 148 | |
| 149 | <Preference |
| 150 | android:dependency="aspect_ratio_apps_enabled" |
| 151 | android:icon="@drawable/ic_info_outline_24dp" |
| 152 | android:persistent="false" |
| 153 | android:summary="@string/aspect_ratio_apps_info" /> |
| 154 | </PreferenceCategory> |
maxwen | 3b53c54 | 2017-08-29 18:27:15 +0200 | [diff] [blame] | 155 | </PreferenceScreen> |