Unexpected-Keyboard/res/xml/settings.xml

37 lines
1.4 KiB
XML
Raw Normal View History

2015-08-08 16:47:22 +02:00
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
<PreferenceCategory android:title="@string/pref_category_layout">
<ListPreference
android:key="keyboard_layout"
android:title="@string/pref_layout_title"
android:summary="@string/pref_layout_summary"
android:defaultValue="azerty"
android:entries="@array/pref_layout_entries"
android:entryValues="@array/pref_layout_values" />
2015-08-08 16:47:22 +02:00
</PreferenceCategory>
<PreferenceCategory android:title="@string/pref_category_typing">
<juloo.common.SlideBarPreference
android:key="sub_value_dist"
android:title="@string/pref_preci_title"
android:summary="@string/pref_preci_summary"
android:defaultValue="8.0"
min="5.0"
max="20.0"
/>
<!-- Precision (sub_value_dist) -->
<!-- Key repeat timeout (longpress_timeout) -->
<!-- Key repeat interval (longpress_interval) -->
2015-08-08 16:47:22 +02:00
</PreferenceCategory>
<PreferenceCategory android:title="@string/pref_category_vibrate">
<CheckBoxPreference
android:key="vibrate_enabled"
android:title="@string/pref_vibrate_title"
2015-08-08 16:47:22 +02:00
android:summary="@string/pref_vibrate_summary"
android:defaultValue="true" />
<!-- Duration (vibrate_duration) -->
2015-08-08 16:47:22 +02:00
</PreferenceCategory>
<PreferenceCategory android:title="@string/pref_category_misc">
<!-- Offset height (margin_bottom) -->
2015-08-08 16:47:22 +02:00
</PreferenceCategory>
</PreferenceScreen>