prefs_screen_gesture.xml revision 3c8a075a584018f58225377d0f09e84887a7d2f9
1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2014 The Android Open Source 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
17<PreferenceScreen
18    xmlns:android="http://schemas.android.com/apk/res/android"
19    android:title="@string/settings_screen_gesture"
20    android:key="screen_gesture">
21    <CheckBoxPreference
22        android:key="gesture_input"
23        android:title="@string/gesture_input"
24        android:summary="@string/gesture_input_summary"
25        android:defaultValue="true"
26        android:persistent="true" />
27    <CheckBoxPreference
28        android:key="pref_gesture_floating_preview_text"
29        android:dependency="gesture_input"
30        android:title="@string/gesture_floating_preview_text"
31        android:summary="@string/gesture_floating_preview_text_summary"
32        android:defaultValue="true"
33        android:persistent="true" />
34    <CheckBoxPreference
35        android:key="pref_gesture_preview_trail"
36        android:dependency="gesture_input"
37        android:title="@string/gesture_preview_trail"
38        android:defaultValue="true"
39        android:persistent="true" />
40    <CheckBoxPreference
41        android:key="pref_gesture_space_aware"
42        android:dependency="gesture_input"
43        android:title="@string/gesture_space_aware"
44        android:summary="@string/gesture_space_aware_summary"
45        android:defaultValue="true"
46        android:persistent="true" />
47</PreferenceScreen>
48