doze: Introduce raise to wake gesture
* Highly inspired by iOS raise to wake - Adapted to OnePlus sdm845 doze doze: Add min interval for raise2wake * avoid having early wakeup * also fix typo in acquire timeout doze: Enable pickup when raise to wake is toggled - This is needed in order for raise to wake to function properly. doze: Fix pickup status for raise to wake Co-authored-by: AnierinB <anierinb@evolution-x.org> Co-authored-by: AshutoshSundresh <ashutoshsundresh@gmail.com> Co-authored-by: LuK1337 <priv.luk@gmail.com> Signed-off-by: AnierinB <anierinb@evolution-x.org> Signed-off-by: Omkar Chandorkar <gotenksIN@aosip.dev> Signed-off-by: LuK1337 <priv.luk@gmail.com> Change-Id: I5df0c4f11f1b24ab813abc393960c5f03f5fab1f
This commit is contained in:
30
doze/res/values/arrays.xml
Normal file
30
doze/res/values/arrays.xml
Normal file
@@ -0,0 +1,30 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2021 The LineageOS Project
|
||||
|
||||
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.
|
||||
-->
|
||||
<resources>
|
||||
<!-- Pickup gesture -->
|
||||
<string-array name="pick_up_gesture_entries" translatable="false">
|
||||
<item>@string/disabled</item>
|
||||
<item>@string/pick_up_gesture_summary</item>
|
||||
<item>@string/pick_up_wake_gesture_summary</item>
|
||||
</string-array>
|
||||
|
||||
<string-array name="pick_up_gesture_values" translatable="false">
|
||||
<item>0</item>
|
||||
<item>1</item>
|
||||
<item>2</item>
|
||||
</string-array>
|
||||
</resources>
|
||||
@@ -28,12 +28,14 @@
|
||||
android:key="pickup_sensor"
|
||||
android:title="@string/pickup_sensor_title">
|
||||
|
||||
<SwitchPreference
|
||||
android:key="gesture_pick_up"
|
||||
android:defaultValue="false"
|
||||
<ListPreference
|
||||
android:key="gesture_pick_up_type"
|
||||
android:defaultValue="0"
|
||||
android:icon="@drawable/ic_pickup"
|
||||
android:title="@string/pick_up_gesture_title"
|
||||
android:summary="@string/pick_up_gesture_summary" />
|
||||
android:summary="%s"
|
||||
android:entries="@array/pick_up_gesture_entries"
|
||||
android:entryValues="@array/pick_up_gesture_values" />
|
||||
|
||||
</PreferenceCategory>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user