diff options
author | davidevinavil <davidevinavil@gmail.com> | 2017-06-10 03:23:04 +0200 |
---|---|---|
committer | davidevinavil <davidevinavil@gmail.com> | 2017-06-21 12:36:06 +0200 |
commit | ed4a16313188a562f476144f5c24fbbcdc2884c6 (patch) | |
tree | e5d04f3cdc0e4fc6fd17292a07f4e65cc106e1e8 /overlay | |
parent | 14159da14e313945dd39f6aff4b037a9eaa1872e (diff) |
overlay: Fix button
Diffstat (limited to 'overlay')
-rw-r--r-- | overlay/packages/apps/Extensions/res/xml/buttons.xml | 21 |
1 files changed, 18 insertions, 3 deletions
diff --git a/overlay/packages/apps/Extensions/res/xml/buttons.xml b/overlay/packages/apps/Extensions/res/xml/buttons.xml index 2787fc0..981505d 100644 --- a/overlay/packages/apps/Extensions/res/xml/buttons.xml +++ b/overlay/packages/apps/Extensions/res/xml/buttons.xml @@ -31,6 +31,14 @@ android:key="volume_category" android:title="@string/volume_category"> + <ListPreference + android:key="volume_key_cursor_control" + android:dialogTitle="@string/volbtn_cursor_control_title" + android:title="@string/volbtn_cursor_control_title" + android:entries="@array/volbtn_cursor_control_entries" + android:entryValues="@array/volbtn_cursor_control_values" + android:persistent="false" /> + <org.aospextended.extensions.preference.SecureSettingSwitchPreference android:key="sysui_show_full_zen" android:title="@string/tuner_full_zen_title" @@ -61,7 +69,7 @@ android:title="@string/volume_rocker_music_controls_title" android:defaultValue="true" android:dependency="volume_rocker_wake" /> - + </PreferenceCategory> <PreferenceCategory @@ -118,6 +126,12 @@ android:key="home_key" android:title="@string/hardware_keys_home_key_title" > + <org.aospextended.extensions.preference.SystemSettingSwitchPreference + android:key="allow_incall_home" + android:title="@string/allow_incall_home_title" + android:summary="@string/allow_incall_home_summary" + android:defaultValue="true" /> + <org.aospextended.extensions.preference.ActionPreference android:key="hwkeys_button_home_single_tap" android:summary="@string/hardware_keys_single_tap_summary" @@ -172,6 +186,7 @@ android:title="@string/hardware_keys_double_tap_title" > </org.aospextended.extensions.preference.ActionPreference> - </PreferenceCategory> + </PreferenceCategory> + -</PreferenceScreen>
\ No newline at end of file +</PreferenceScreen> |