* Switch to androidx for settings * Implement all settings * Added all pages to settings * Add toolbar to settings * Left align all preferences * Migrate to androidx preference manager * Migrate settings functions * Implement dark theme in settings page * Remove old settings files * Remove unused resources Co-authored-by: Amine Bou <510304+aminecmi@users.noreply.github.com>
12 lines
411 B
XML
12 lines
411 B
XML
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
<EditTextPreference
|
|
android:inputType="number"
|
|
android:key="api_timeout"
|
|
android:selectAllOnFocus="true"
|
|
android:singleLine="true"
|
|
android:title="@string/pref_api_timeout"
|
|
app:iconSpaceReserved="false"/>
|
|
|
|
</PreferenceScreen>
|