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

26 lines
1.2 KiB
XML
Raw Normal View History

2020-04-05 13:15:03 +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">
<SwitchPreference
android:layout="@layout/layout_preference"
android:widgetLayout="@layout/layout_switch"
android:icon="@drawable/ic_round_bug_report_blue"
android:defaultValue="false"
android:key="check_beta_update"
android:title="@string/title_check_beta_update"
android:summary="@string/tip_check_beta_update"/>
<SwitchPreference
android:icon="@drawable/ic_chrome"
android:layout="@layout/layout_preference"
android:widgetLayout="@layout/layout_switch"
android:defaultValue="true"
android:key="use_webview"
android:title="@string/title_use_webview"
android:summaryOn="@string/tip_use_webview_on"
android:summaryOff="@string/tip_use_webview"/>
</androidx.preference.PreferenceCategory>
</androidx.preference.PreferenceScreen>