blob: e92fb2b6b9752dca3e6d8fc627cb9f39993e8d8a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
<PreferenceCategory android:title="@string/pref_category_layout">
<!-- Keyboard layout -->
</PreferenceCategory>
<PreferenceCategory android:title="@string/pref_category_typing">
<!-- Precision (SUB_VALUE_DIST) -->
<!-- Key repeat timeout (LONGPRESS_TIMEOUT) -->
<!-- Key repeat interval (LONGPRESS_INTERVAL) -->
</PreferenceCategory>
<PreferenceCategory android:title="@string/pref_category_vibrate">
<CheckBoxPreference
android:key="vibrate_enabled"
android:title="@string/pref_vibrate_text"
android:summary="@string/pref_vibrate_summary"
android:defaultValue="true" />
<!-- Duration (VIBRATE_DURATION) -->
</PreferenceCategory>
<PreferenceCategory android:title="@string/pref_category_misc">
<!-- Keys height (_keyHeight) -->
<!-- Offset height (_marginBottom) -->
</PreferenceCategory>
</PreferenceScreen>
|