MotoActions: Add Material Icons for Fingerprint Gestures

Signed-off-by: UtsavisGreat <utsavbalar1231@gmail.com>
This commit is contained in:
UtsavisGreat
2019-05-26 12:37:10 +00:00
committed by Jorge Lucas
parent 390fd1c714
commit aab9d3c51a
8 changed files with 157 additions and 1 deletions

View File

@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (C) 2015-2016 The CyanogenMod Project
Copyright (C) 2017 The LineageOS Project
Copyright (C) 2017-2019 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
@@ -19,6 +19,7 @@
android:key="fp_home_scr_off"
android:enabled="false"
android:title="@string/fingerprint_gestures_screenoff_title"
android:icon="@drawable/ic_fingerprint"
android:summary="@string/fingerprint_gestures_screenoff_summary" />
<PreferenceCategory
@@ -29,6 +30,7 @@
android:key="fp_haptic"
android:defaultValue="0"
android:title="@string/haptic_feedback"
android:icon="@drawable/ic_vibrate"
android:summary="@string/haptic_feedback_summary" />
<ListPreference
@@ -38,6 +40,7 @@
android:key="fp_keys"
android:defaultValue="0"
android:entries="@array/fp_keys_listArray"
android:icon="@drawable/ic_tap"
android:entryValues="@array/fp_keys_listValues" />
<ListPreference
@@ -47,6 +50,7 @@
android:key="fp_key_dbltap"
android:defaultValue="0"
android:entries="@array/fp_keys_listArray"
android:icon="@drawable/ic_double_tap"
android:entryValues="@array/fp_keys_listValues" />
<ListPreference
@@ -56,6 +60,7 @@
android:key="fp_key_hold"
android:defaultValue="0"
android:entries="@array/fp_keys_listArray"
android:icon="@drawable/ic_tap_hold"
android:entryValues="@array/fp_keys_listValues" />
<ListPreference
@@ -65,6 +70,7 @@
android:key="fp_key_left"
android:defaultValue="0"
android:entries="@array/fp_keys_listArray"
android:icon="@drawable/ic_swipe_left"
android:entryValues="@array/fp_keys_listValues" />
<ListPreference
@@ -74,6 +80,7 @@
android:key="fp_key_right"
android:defaultValue="0"
android:entries="@array/fp_keys_listArray"
android:icon="@drawable/ic_swipe_right"
android:entryValues="@array/fp_keys_listValues" />
</PreferenceCategory>
@@ -87,6 +94,7 @@
android:dependency="fp_home_scr_off"
android:defaultValue="0"
android:title="@string/haptic_feedback"
android:icon="@drawable/ic_vibrate"
android:summary="@string/haptic_feedback_summary" />
<ListPreference
@@ -97,6 +105,7 @@
android:key="fp_keys_off"
android:defaultValue="0"
android:entries="@array/fp_keys_screen_off_listArray"
android:icon="@drawable/ic_tap"
android:entryValues="@array/fp_keys_screen_off_listValues" />
<ListPreference
@@ -107,6 +116,7 @@
android:key="fp_key_dbltap_off"
android:defaultValue="0"
android:entries="@array/fp_keys_screen_off_listArray"
android:icon="@drawable/ic_double_tap"
android:entryValues="@array/fp_keys_screen_off_listValues" />
<ListPreference
@@ -117,6 +127,7 @@
android:key="fp_key_hold_off"
android:defaultValue="0"
android:entries="@array/fp_keys_screen_off_listArray"
android:icon="@drawable/ic_tap_hold"
android:entryValues="@array/fp_keys_screen_off_listValues" />
<ListPreference
@@ -127,6 +138,7 @@
android:key="fp_key_left_off"
android:defaultValue="0"
android:entries="@array/fp_keys_screen_off_listArray"
android:icon="@drawable/ic_swipe_left"
android:entryValues="@array/fp_keys_screen_off_listValues" />
<ListPreference
@@ -137,6 +149,7 @@
android:key="fp_key_right_off"
android:defaultValue="0"
android:entries="@array/fp_keys_screen_off_listArray"
android:icon="@drawable/ic_swipe_right"
android:entryValues="@array/fp_keys_screen_off_listValues" />
</PreferenceCategory>