2020-09-04 23:17:43 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!--
|
|
|
|
Copyright (C) 2015-2016 The CyanogenMod Project
|
2024-03-08 20:15:39 +02:00
|
|
|
Copyright (C) 2017-2024 The LineageOS Project
|
2020-09-04 23:17:43 +02:00
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License"
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
-->
|
2021-10-06 07:25:13 +00:00
|
|
|
<PreferenceScreen
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:title="@string/actions_title">
|
2020-09-04 23:17:43 +02:00
|
|
|
|
|
|
|
<PreferenceCategory
|
2021-10-06 07:25:13 +00:00
|
|
|
android:key="actions_key">
|
2020-09-04 23:17:43 +02:00
|
|
|
|
2024-03-08 20:15:39 +02:00
|
|
|
<SwitchPreferenceCompat
|
2020-09-04 23:17:43 +02:00
|
|
|
android:key="gesture_chop_chop"
|
|
|
|
android:defaultValue="true"
|
|
|
|
android:title="@string/chop_chop_gesture_title"
|
2020-11-13 17:07:22 +05:30
|
|
|
android:summary="@string/chop_chop_gesture_summary"
|
|
|
|
android:icon="@drawable/ic_settings_chop" />
|
2020-09-04 23:17:43 +02:00
|
|
|
|
2024-03-08 20:15:39 +02:00
|
|
|
<SwitchPreferenceCompat
|
2020-09-04 23:17:43 +02:00
|
|
|
android:key="gesture_ir_silencer"
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:title="@string/hand_wave_silencer_title"
|
2020-11-13 17:07:22 +05:30
|
|
|
android:summary="@string/hand_wave_silencer_summary"
|
|
|
|
android:icon="@drawable/ic_settings_wave" />
|
2020-09-04 23:17:43 +02:00
|
|
|
|
2024-03-08 20:15:39 +02:00
|
|
|
<SwitchPreferenceCompat
|
2020-09-04 23:17:43 +02:00
|
|
|
android:key="gesture_flip_to_mute"
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:title="@string/flip_to_mute_title"
|
2020-11-13 17:07:22 +05:30
|
|
|
android:summary="@string/flip_to_mute_summary"
|
|
|
|
android:icon="@drawable/ic_settings_flip" />
|
2020-09-04 23:17:43 +02:00
|
|
|
|
2024-03-08 20:15:39 +02:00
|
|
|
<SwitchPreferenceCompat
|
2020-09-04 23:17:43 +02:00
|
|
|
android:key="gesture_lift_to_silence"
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:title="@string/lift_to_silence_title"
|
2020-11-13 17:07:22 +05:30
|
|
|
android:summary="@string/lift_to_silence_summary"
|
|
|
|
android:icon="@drawable/ic_settings_pick" />
|
2020-09-04 23:17:43 +02:00
|
|
|
|
|
|
|
</PreferenceCategory>
|
|
|
|
|
|
|
|
</PreferenceScreen>
|