studyhelper/app/src/main/res/xml/preferences.xml

26 lines
894 B
XML
Raw Normal View History

2021-11-16 22:04:40 -05:00
<PreferenceScreen
xmlns:android="http://schemas.android.com/apk/res/android">
<SwitchPreference
android:defaultValue="false"
android:key="pref_theme"
android:title="@string/pref_title_theme"
android:summary="@string/pref_description_theme" />
<ListPreference
android:defaultValue="1"
android:entries="@array/pref_subject_order"
android:entryValues="@array/pref_subject_order_values"
android:key="pref_subject_order"
android:negativeButtonText="@null"
android:positiveButtonText="@null"
android:title="@string/pref_title_subject_order" />
<EditTextPreference
android:key="pref_default_question"
android:inputType="text"
android:maxLines="1"
android:selectAllOnFocus="true"
android:title="@string/pref_title_default_question" />
</PreferenceScreen>