* Soft-Keyboard numpad * no more SoftKeyHandler, the main view is in its own package * settings are no longer passed unnecessarilly here and there * fixed numeric mode not working in some cases * simplified suggestion handling * fixed crashing when changing the phone orientation
24 lines
750 B
XML
24 lines
750 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<PreferenceScreen xmlns:app="http://schemas.android.com/apk/res-auto" app:orderingFromXml="true">
|
|
|
|
<SwitchPreferenceCompat
|
|
app:defaultValue="true"
|
|
app:key="pref_dark_theme"
|
|
app:layout="@layout/pref_switch"
|
|
app:title="@string/pref_dark_theme" />
|
|
|
|
<SwitchPreferenceCompat
|
|
app:defaultValue="true"
|
|
app:key="pref_show_soft_keys"
|
|
app:layout="@layout/pref_switch"
|
|
app:title="@string/pref_show_soft_function_keys" />
|
|
|
|
<SwitchPreferenceCompat
|
|
app:defaultValue="false"
|
|
app:key="pref_show_soft_numpad"
|
|
app:layout="@layout/pref_switch"
|
|
app:title="@string/pref_show_soft_numpad"
|
|
app:summary="@string/pref_show_soft_numpad_summary"
|
|
app:dependency="pref_show_soft_keys" />
|
|
|
|
</PreferenceScreen>
|