CMActions: add support for screen off gestures
Change-Id: If27b4a2a0ffaeed65df4dfe2d2668ac453105150
This commit is contained in:
@@ -63,6 +63,12 @@
|
||||
android:title="Fingerprint Gestures"
|
||||
android:summary="Use fingerprint gestures" />
|
||||
|
||||
<SwitchPreference
|
||||
android:key="fp_home_scr_off"
|
||||
android:dependency="fp_home"
|
||||
android:title="Fingerprint Gestures when screen off"
|
||||
android:summary="Use fingerprint gestures when screen off" />
|
||||
|
||||
<SwitchPreference
|
||||
android:key="fp_haptic"
|
||||
android:dependency="fp_home"
|
||||
@@ -70,6 +76,12 @@
|
||||
android:title="Fingerprint Gestures Haptic Feedback"
|
||||
android:summary="Vibrate on actions" />
|
||||
|
||||
</PreferenceCategory>
|
||||
|
||||
<PreferenceCategory
|
||||
android:key="fp_keys_scr_on"
|
||||
android:title="Screen On Gestures" >
|
||||
|
||||
<ListPreference
|
||||
android:dependency="fp_home"
|
||||
android:title="Fingerprint Tap"
|
||||
@@ -109,6 +121,51 @@
|
||||
android:defaultValue="0"
|
||||
android:entries="@array/fp_keys_listArray"
|
||||
android:entryValues="@array/fp_keys_listValues" />
|
||||
</PreferenceCategory>
|
||||
|
||||
<PreferenceCategory
|
||||
android:key="fp_keys_scr_off"
|
||||
android:title="Screen Off Gestures" >
|
||||
|
||||
<ListPreference
|
||||
android:dependency="fp_home_scr_off"
|
||||
android:title="Fingerprint Tap"
|
||||
android:summary="Select action for single tap"
|
||||
android:dialogTitle="Select action for single tap"
|
||||
android:key="fp_keys_off"
|
||||
android:defaultValue="0"
|
||||
android:entries="@array/fp_keys_listArray"
|
||||
android:entryValues="@array/fp_keys_listValues" />
|
||||
|
||||
<ListPreference
|
||||
android:dependency="fp_home_scr_off"
|
||||
android:title="Fingerprint Long Press"
|
||||
android:summary="Select action for long press"
|
||||
android:dialogTitle="Select action for long press"
|
||||
android:key="fp_key_hold_off"
|
||||
android:defaultValue="0"
|
||||
android:entries="@array/fp_keys_listArray"
|
||||
android:entryValues="@array/fp_keys_listValues" />
|
||||
|
||||
<ListPreference
|
||||
android:dependency="fp_home_scr_off"
|
||||
android:title="Fingerprint Swipe Left"
|
||||
android:summary="Select action for swipe left"
|
||||
android:dialogTitle="Select action for swipe left"
|
||||
android:key="fp_key_left_off"
|
||||
android:defaultValue="0"
|
||||
android:entries="@array/fp_keys_listArray"
|
||||
android:entryValues="@array/fp_keys_listValues" />
|
||||
|
||||
<ListPreference
|
||||
android:dependency="fp_home_scr_off"
|
||||
android:title="Fingerprint Swipe Right"
|
||||
android:summary="Select action for swipe right"
|
||||
android:dialogTitle="Select action for swipe right"
|
||||
android:key="fp_key_right_off"
|
||||
android:defaultValue="0"
|
||||
android:entries="@array/fp_keys_listArray"
|
||||
android:entryValues="@array/fp_keys_listValues" />
|
||||
|
||||
</PreferenceCategory>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user