mozilla_settings.xml (2278B)
1 <?xml version="1.0" encoding="utf-8"?> 2 <!-- This Source Code Form is subject to the terms of the Mozilla Public 3 - License, v. 2.0. If a copy of the MPL was not distributed with this 4 - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> 5 <androidx.preference.PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"> 6 <!-- AboutPreference performs some string substitutions, so that we can show "About <AppName>". 7 We keep a plain "About" as the title here in xml as a fallback, but AboutPreference 8 will use the substitution regardless of what is set here. --> 9 10 <org.mozilla.focus.widget.AboutPreference 11 android:key="@string/pref_key_about" 12 android:layout="@layout/focus_preference_new_tab" 13 android:title="@string/menu_about" /> 14 15 <androidx.preference.Preference 16 android:icon="@drawable/mozac_ic_tab_new" 17 android:key="@string/pref_key_help" 18 android:layout="@layout/focus_preference_new_tab" 19 android:title="@string/menu_help" /> 20 21 <androidx.preference.Preference 22 android:icon="@drawable/mozac_ic_tab_new" 23 android:key="@string/pref_key_privacy_notice" 24 android:layout="@layout/focus_preference_new_tab" 25 android:title="@string/preference_privacy_notice" /> 26 27 <androidx.preference.Preference 28 android:icon="@drawable/mozac_ic_tab_new" 29 android:key="@string/pref_key_terms_of_use" 30 android:layout="@layout/focus_preference_new_tab" 31 android:title="@string/menu_terms_of_use" /> 32 33 <androidx.preference.Preference 34 android:icon="@drawable/mozac_ic_tab_new" 35 android:key="@string/pref_key_licensing_info" 36 android:layout="@layout/focus_preference_new_tab" 37 android:title="@string/preference_licensing_info" /> 38 39 <androidx.preference.Preference 40 android:key="@string/pref_key_libraries_we_use" 41 android:layout="@layout/focus_preference_new_tab" 42 android:title="@string/preference_libraries_we_use" /> 43 44 <androidx.preference.Preference 45 android:key="@string/pref_key_crash_reports" 46 android:layout="@layout/focus_preference_new_tab" 47 android:title="@string/preference_crashes" /> 48 49 </androidx.preference.PreferenceScreen>