TiebaLite/app/src/main/res/xml/other_preferences.xml

23 lines
1.2 KiB
XML
Raw Normal View History

2021-08-19 17:05:17 +08:00
<?xml version="1.0" encoding="utf-8"?><!--suppress AndroidElementNotAllowed -->
<androidx.preference.PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
<androidx.preference.PreferenceCategory android:layout="@layout/layout_preference_category_no_title">
2020-04-05 13:15:03 +08:00
<SwitchPreference
android:defaultValue="false"
2021-08-19 17:05:17 +08:00
android:icon="@drawable/ic_round_bug_report_blue"
2020-04-05 13:15:03 +08:00
android:key="check_beta_update"
2021-08-19 17:05:17 +08:00
android:layout="@layout/layout_preference"
android:summary="@string/tip_check_beta_update"
2020-04-05 13:15:03 +08:00
android:title="@string/title_check_beta_update"
2021-08-19 17:05:17 +08:00
android:widgetLayout="@layout/layout_switch" />
2020-04-05 13:15:03 +08:00
<SwitchPreference
android:defaultValue="true"
2021-08-19 17:05:17 +08:00
android:icon="@drawable/ic_chrome"
2020-04-05 13:15:03 +08:00
android:key="use_webview"
2021-08-19 17:05:17 +08:00
android:layout="@layout/layout_preference"
android:summaryOff="@string/tip_use_webview"
2020-04-05 13:15:03 +08:00
android:summaryOn="@string/tip_use_webview_on"
2021-08-19 17:05:17 +08:00
android:title="@string/title_use_webview"
android:widgetLayout="@layout/layout_switch" />
2020-04-05 13:15:03 +08:00
</androidx.preference.PreferenceCategory>
</androidx.preference.PreferenceScreen>