LibreTube/app/src/main/res/xml/settings.xml

122 lines
3.4 KiB
XML
Raw Normal View History

2022-02-08 14:58:50 +05:30
<?xml version="1.0" encoding="utf-8"?>
<androidx.preference.PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
2022-05-11 02:10:29 +05:30
2022-05-11 13:34:48 +05:30
<PreferenceCategory app:title="@string/location">
2022-05-11 02:10:29 +05:30
2022-02-08 19:57:13 +05:30
<ListPreference
app:key="region"
app:title="@string/region"
app:entries="@array/regions"
app:entryValues="@array/regionsValue"
app:defaultValue="US"
app:useSimpleSummaryProvider="true"
android:icon="@drawable/ic_region"
2022-02-08 19:57:13 +05:30
/>
2022-02-08 14:58:50 +05:30
2022-05-06 00:21:34 +05:30
<ListPreference
app:key="language"
app:title="@string/changeLanguage"
app:entries="@array/languages"
app:entryValues="@array/languagesValue"
app:defaultValue="sys"
2022-05-06 00:21:34 +05:30
app:useSimpleSummaryProvider="true"
android:icon="@drawable/ic_flag"
2022-05-06 00:21:34 +05:30
/>
2022-05-11 02:10:29 +05:30
</PreferenceCategory>
2022-05-11 13:34:48 +05:30
<PreferenceCategory app:title="@string/instance">
2022-05-11 02:10:29 +05:30
2022-02-08 19:57:13 +05:30
<ListPreference
app:key="instance"
app:title="@string/instances"
app:entries="@array/instances"
app:entryValues="@array/instancesValue"
app:defaultValue="https://pipedapi.kavin.rocks/"
2022-03-18 20:43:07 +05:30
android:icon="@drawable/ic_server"
2022-02-10 17:48:38 +05:30
/>
2022-05-11 02:10:29 +05:30
2022-02-08 19:57:13 +05:30
<androidx.preference.EditTextPreference
app:key="customInstance"
app:title="@string/customInstance"
app:isPreferenceVisible="false"/>
2022-05-11 02:10:29 +05:30
2022-02-08 14:58:50 +05:30
<androidx.preference.Preference
2022-02-08 19:57:13 +05:30
app:key="login_register"
app:title="@string/login_register"
2022-03-18 20:43:07 +05:30
android:icon="@drawable/ic_login"
android:summary="@string/notgmail"
2022-02-08 19:57:13 +05:30
/>
2022-05-11 02:10:29 +05:30
2022-03-16 19:02:42 +05:30
<androidx.preference.Preference
app:key="import_from_yt"
app:title="@string/import_from_yt"
2022-05-05 17:08:48 +05:30
android:summary="@string/import_from_yt_summary"
2022-03-18 20:43:07 +05:30
android:icon="@drawable/ic_import"
2022-03-16 19:02:42 +05:30
/>
2022-05-11 02:10:29 +05:30
</PreferenceCategory>
2022-05-11 13:34:48 +05:30
<PreferenceCategory app:title="@string/customization">
2022-05-11 02:10:29 +05:30
2022-03-18 01:18:43 +05:30
<ListPreference
app:title="@string/app_theme"
app:key="theme_togglee"
app:entries="@array/themes"
app:entryValues="@array/themesValue"
app:defaultValue="A"
2022-03-18 20:43:07 +05:30
android:icon="@drawable/ic_theme"
2022-03-18 01:18:43 +05:30
/>
2022-05-11 02:10:29 +05:30
<ListPreference
app:title="@string/defaultTab"
app:key="default_tab"
app:entries="@array/tabs"
app:entryValues="@array/tabsValue"
app:defaultValue="home"
android:icon="@drawable/ic_home"
/>
2022-05-16 15:41:22 +05:30
<androidx.preference.Preference
app:title="@string/sponsorblock"
app:key="sponsorblock"
app:summary="@string/sponsorblock_summary"
2022-05-16 15:41:22 +05:30
android:icon="@drawable/ic_sponsorblock"
/>
2022-03-19 00:28:50 +05:30
<ListPreference
app:title="@string/defres"
app:key="default_res"
app:entries="@array/defres"
2022-03-29 21:07:52 +05:30
app:entryValues="@array/defresValue"
2022-03-19 00:28:50 +05:30
app:defaultValue=""
android:icon="@drawable/ic_hd"
app:useSimpleSummaryProvider="true"
/>
2022-05-11 02:10:29 +05:30
2022-03-29 22:32:34 +05:30
<ListPreference
app:title="@string/grid"
app:key="grid"
app:entries="@array/grid"
app:entryValues="@array/grid"
2022-03-31 23:04:19 +05:30
app:defaultValue="@integer/grid_items"
2022-03-29 22:32:34 +05:30
android:icon="@drawable/ic_column"
app:useSimpleSummaryProvider="true"
/>
2022-05-11 02:10:29 +05:30
</PreferenceCategory>
2022-05-11 02:17:02 +05:30
<PreferenceCategory app:title="@string/about">
2022-05-11 02:10:29 +05:30
2022-05-01 20:06:28 +05:30
<Preference
2022-05-11 02:17:02 +05:30
app:title="@string/website"
2022-05-01 20:06:28 +05:30
app:key="about"
android:icon="@drawable/ic_info"
/>
2022-03-18 01:18:43 +05:30
2022-05-11 02:10:29 +05:30
</PreferenceCategory>
2022-02-08 14:58:50 +05:30
</androidx.preference.PreferenceScreen>