OSDN Git Service

Merge tag 'android-6.0.1_r74' into HEAD
[android-x86/packages-apps-Settings.git] / res / xml / gestures_prefs.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright (C) 2012 The CyanogenMod Project
3
4      Licensed under the Apache License, Version 2.0 (the "License");
5      you may not use this file except in compliance with the License.
6      You may obtain a copy of the License at
7
8           http://www.apache.org/licenses/LICENSE-2.0
9
10      Unless required by applicable law or agreed to in writing, software
11      distributed under the License is distributed on an "AS IS" BASIS,
12      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13      See the License for the specific language governing permissions and
14      limitations under the License.
15 -->
16 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" >
17
18     <PreferenceCategory android:title="@string/enable_subcat_title" >
19
20         <!-- Enable -->
21         <com.android.settings.cyanogenmod.SystemSettingSwitchPreference
22             android:key="enable_stylus_gestures"
23             android:summary="@string/enable_spen_summary_head"
24             android:title="@string/enable_spen_title_head" />
25
26     </PreferenceCategory>
27
28     <!-- Gesture Actions -->
29     <PreferenceCategory android:title="@string/gestures_subcat_title" >
30         <ListPreference
31             android:dependency="enable_stylus_gestures"
32             android:entries="@array/gestures_entries"
33             android:entryValues="@array/gestures_values"
34             android:key="gestures_left"
35             android:persistent="false"
36             android:title="@string/gestures_left_spen_title_head" />
37         <ListPreference
38             android:dependency="enable_stylus_gestures"
39             android:entries="@array/gestures_entries"
40             android:entryValues="@array/gestures_values"
41             android:key="gestures_right"
42             android:persistent="false"
43             android:title="@string/gestures_right_spen_title_head" />
44         <ListPreference
45             android:dependency="enable_stylus_gestures"
46             android:entries="@array/gestures_entries"
47             android:entryValues="@array/gestures_values"
48             android:key="gestures_up"
49             android:persistent="false"
50             android:title="@string/gestures_up_spen_title_head" />
51         <ListPreference
52             android:dependency="enable_stylus_gestures"
53             android:entries="@array/gestures_entries"
54             android:entryValues="@array/gestures_values"
55             android:key="gestures_down"
56             android:persistent="false"
57             android:title="@string/gestures_down_spen_title_head" />
58         <ListPreference
59             android:dependency="enable_stylus_gestures"
60             android:entries="@array/gestures_entries"
61             android:entryValues="@array/gestures_values"
62             android:key="gestures_long"
63             android:persistent="false"
64             android:title="@string/gestures_long_spen_title_head" />
65         <ListPreference
66             android:dependency="enable_stylus_gestures"
67             android:entries="@array/gestures_entries"
68             android:entryValues="@array/gestures_values"
69             android:key="gestures_double"
70             android:persistent="false"
71             android:title="@string/gestures_double_spen_title_head" />
72     </PreferenceCategory>
73
74 </PreferenceScreen>