2022-02-08 14:58:50 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2022-06-07 17:12:07 +05:30
|
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
2022-02-08 14:58:50 +05:30
|
|
|
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-06-03 22:19:48 +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" />
|
|
|
|
|
|
|
|
<ListPreference
|
|
|
|
app:key="language"
|
|
|
|
app:title="@string/changeLanguage"
|
|
|
|
app:entries="@array/languages"
|
|
|
|
app:entryValues="@array/languagesValue"
|
|
|
|
app:defaultValue="sys"
|
|
|
|
app:useSimpleSummaryProvider="true"
|
|
|
|
android:icon="@drawable/ic_translate" />
|
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-06-03 22:19:48 +05:30
|
|
|
<ListPreference
|
|
|
|
app:key="instance"
|
|
|
|
app:title="@string/instances"
|
|
|
|
app:entries="@array/instances"
|
|
|
|
app:entryValues="@array/instancesValue"
|
|
|
|
app:defaultValue="https://pipedapi.kavin.rocks/"
|
|
|
|
android:icon="@drawable/ic_server" />
|
|
|
|
|
2022-06-07 17:12:07 +05:30
|
|
|
<EditTextPreference
|
2022-06-03 22:19:48 +05:30
|
|
|
app:key="customInstance"
|
|
|
|
app:title="@string/customInstance"
|
|
|
|
app:isPreferenceVisible="false" />
|
|
|
|
|
2022-06-07 17:12:07 +05:30
|
|
|
<Preference
|
2022-06-03 22:19:48 +05:30
|
|
|
app:key="login_register"
|
|
|
|
app:title="@string/login_register"
|
|
|
|
android:icon="@drawable/ic_login"
|
|
|
|
android:summary="@string/notgmail" />
|
|
|
|
|
2022-06-07 17:12:07 +05:30
|
|
|
<Preference
|
2022-06-03 22:19:48 +05:30
|
|
|
app:key="import_from_yt"
|
|
|
|
app:title="@string/import_from_yt"
|
|
|
|
android:summary="@string/import_from_yt_summary"
|
|
|
|
android:icon="@drawable/ic_upload" />
|
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-06-07 17:12:07 +05:30
|
|
|
<Preference
|
2022-06-07 12:22:11 +05:30
|
|
|
app:key="appearance"
|
|
|
|
app:title="@string/appearance"
|
2022-06-07 20:22:06 +05:30
|
|
|
app:summary="@string/appearance_summary"
|
2022-06-03 22:19:48 +05:30
|
|
|
android:icon="@drawable/ic_color" />
|
2022-05-19 21:52:19 +05:30
|
|
|
|
2022-06-07 17:12:07 +05:30
|
|
|
<Preference
|
2022-06-03 22:19:48 +05:30
|
|
|
app:title="@string/sponsorblock"
|
|
|
|
app:key="sponsorblock"
|
|
|
|
app:summary="@string/sponsorblock_summary"
|
|
|
|
android:icon="@drawable/ic_block" />
|
|
|
|
|
2022-06-07 17:12:07 +05:30
|
|
|
<Preference
|
2022-06-07 20:22:06 +05:30
|
|
|
app:key="advanced"
|
|
|
|
app:title="@string/advanced"
|
|
|
|
app:summary="@string/advanced_summary"
|
|
|
|
android:icon="@drawable/ic_list" />
|
2022-05-15 19:26:24 +05:30
|
|
|
|
|
|
|
</PreferenceCategory>
|
|
|
|
|
2022-06-07 19:22:10 +05:30
|
|
|
<PreferenceCategory>
|
2022-05-11 02:10:29 +05:30
|
|
|
|
2022-06-03 22:19:48 +05:30
|
|
|
<Preference
|
2022-06-07 19:22:10 +05:30
|
|
|
app:title="@string/about"
|
2022-06-03 22:19:48 +05:30
|
|
|
app:key="about"
|
2022-06-07 19:22:10 +05:30
|
|
|
android:icon="@drawable/ic_info" />
|
2022-03-18 01:18:43 +05:30
|
|
|
|
2022-05-11 02:10:29 +05:30
|
|
|
</PreferenceCategory>
|
|
|
|
|
2022-06-07 17:12:07 +05:30
|
|
|
</PreferenceScreen>
|