2018-03-11 14:51:39 +01:00
|
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
|
|
|
|
<EditTextPreference
|
|
|
|
android:capitalize="words"
|
|
|
|
android:defaultValue="@string/pref_default_api_base_url"
|
|
|
|
android:inputType="textUri"
|
|
|
|
android:key="pref_api_base"
|
|
|
|
android:maxLines="1"
|
|
|
|
android:selectAllOnFocus="true"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:title="@string/pref_title_peertube_server" />
|
|
|
|
|
2018-12-29 14:21:08 +01:00
|
|
|
<!--<SwitchPreference-->
|
|
|
|
<!--android:key="pref_background_play"-->
|
|
|
|
<!--android:title="@string/pref_title_background_play"-->
|
|
|
|
<!--android:summary="@string/pref_description_background_play"-->
|
|
|
|
<!--android:defaultValue="true" />-->
|
|
|
|
|
2018-07-01 15:11:26 +02:00
|
|
|
<SwitchPreference
|
|
|
|
android:key="pref_show_nsfw"
|
|
|
|
android:title="@string/pref_title_show_nsfw"
|
|
|
|
android:summary="@string/pref_description_show_nsfw"
|
|
|
|
android:defaultValue="false" />
|
2019-01-01 02:15:35 +08:00
|
|
|
|
|
|
|
<MultiSelectListPreference
|
|
|
|
android:defaultValue="@array/empty_array"
|
|
|
|
android:entries="@array/languageArray"
|
|
|
|
android:entryValues="@array/languageValues"
|
|
|
|
android:key="pref_language"
|
|
|
|
android:summary="@string/pref_description_language"
|
|
|
|
android:title="@string/pref_language" />
|
2018-07-01 15:11:26 +02:00
|
|
|
|
2018-12-21 21:59:10 +01:00
|
|
|
<ListPreference
|
|
|
|
android:title="@string/pref_title_app_theme"
|
|
|
|
android:summary="@string/pref_description_app_theme"
|
|
|
|
android:key="pref_theme"
|
2018-12-25 01:21:26 +01:00
|
|
|
android:defaultValue="AppTheme.ORANGE"
|
2018-12-21 21:59:10 +01:00
|
|
|
android:entries="@array/themeArray"
|
|
|
|
android:entryValues="@array/themeValues" />
|
|
|
|
|
|
|
|
<SwitchPreference
|
|
|
|
android:key="pref_dark_mode"
|
|
|
|
android:title="@string/pref_title_dark_mode"
|
|
|
|
android:summary="@string/pref_description_dark_mode"
|
|
|
|
android:defaultValue="false" />
|
|
|
|
|
2018-07-01 15:11:26 +02:00
|
|
|
<SwitchPreference
|
|
|
|
android:key="pref_torrent_player"
|
|
|
|
android:title="@string/pref_title_torrent_player"
|
|
|
|
android:summary="@string/pref_description_torrent_player"
|
|
|
|
android:defaultValue="false" />
|
|
|
|
|
2018-11-10 17:48:09 +01:00
|
|
|
<Preference
|
|
|
|
android:title="@string/pref_title_version"
|
|
|
|
android:summary="@string/versionName" />
|
|
|
|
|
2018-11-08 00:01:04 +01:00
|
|
|
<Preference
|
|
|
|
android:title="@string/pref_title_license"
|
|
|
|
android:summary="@string/pref_description_license" />
|
|
|
|
|
2018-07-01 15:11:26 +02:00
|
|
|
|
2018-03-11 14:51:39 +01:00
|
|
|
</PreferenceScreen>
|