termux-x11/app/src/main/res/xml/preferences.xml

22 lines
1019 B
XML

<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
<CheckBoxPreference android:title="Show additional keyboard"
android:defaultValue="true"
android:summary="Show keyboard with additional keys if soft keyboard is visible"
android:key="showAdditionalKbd" />
<CheckBoxPreference android:title="Fullscreen mode"
android:defaultValue="false"
android:key="fullscreen" />
<ListPreference
android:title="Touchscreen input mode"
android:key="touchMode"
android:defaultValue="1"
android:entries="@array/touchscreenInputModesEntries"
android:entryValues="@array/touchscreenInputModesValues" />
<CheckBoxPreference
android:title="Show IME with external keyboard"
android:defaultValue="false"
android:key="showIMEWhileExternalConnected"
android:summary="Show software keyboard while hardware keyboard is connected" />
</PreferenceScreen>