OLD | NEW |
1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
2 <!-- This Source Code Form is subject to the terms of the Mozilla Public | 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 | 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/. --> | 4 - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> |
5 | 5 |
6 <!-- Phone v11+ only: Sync is a top-level menu item. | 6 <!-- Phone v11+ only: Sync is a top-level menu item. |
7 See xml-v11/preference_headers.xml for tablet layout. | 7 See xml-v11/preference_headers.xml for tablet layout. |
8 Preference changes here should be mirrored to xml/preferences.xml.in. --> | 8 Preference changes here should be mirrored to xml/preferences.xml.in. --> |
9 | 9 |
10 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" | 10 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" |
11 xmlns:gecko="http://schemas.android.com/apk/res-auto" | 11 xmlns:gecko="http://schemas.android.com/apk/res-auto" |
12 android:enabled="false"> | 12 android:enabled="false"> |
13 | 13 |
14 <org.mozilla.gecko.preferences.SyncPreference android:key="android.not_a_pre
ference.sync" | 14 <!-- removed SyncPreference as of issue #2350 --> |
15 android:title="@string/pref_sy
nc" | |
16 android:persistent="false" /> | |
17 | 15 |
18 <PreferenceScreen android:title="@string/pref_category_customize" | 16 <PreferenceScreen android:title="@string/pref_category_customize" |
19 android:fragment="org.mozilla.gecko.preferences.GeckoPrefe
renceFragment" > | 17 android:fragment="org.mozilla.gecko.preferences.GeckoPrefe
renceFragment" > |
20 <extra android:name="resource" | 18 <extra android:name="resource" |
21 android:value="preferences_customize"/> | 19 android:value="preferences_customize"/> |
22 </PreferenceScreen> | 20 </PreferenceScreen> |
23 | 21 |
24 <PreferenceScreen android:title="@string/pref_category_display" | 22 <PreferenceScreen android:title="@string/pref_category_display" |
25 android:fragment="org.mozilla.gecko.preferences.GeckoPrefe
renceFragment" > | 23 android:fragment="org.mozilla.gecko.preferences.GeckoPrefe
renceFragment" > |
26 <extra android:name="resource" | 24 <extra android:name="resource" |
(...skipping 26 matching lines...) Expand all Loading... |
53 android:value="preferences_vendor"/> | 51 android:value="preferences_vendor"/> |
54 </PreferenceScreen> | 52 </PreferenceScreen> |
55 | 53 |
56 <PreferenceScreen android:title="@string/pref_category_devtools" | 54 <PreferenceScreen android:title="@string/pref_category_devtools" |
57 android:fragment="org.mozilla.gecko.preferences.GeckoPrefe
renceFragment" > | 55 android:fragment="org.mozilla.gecko.preferences.GeckoPrefe
renceFragment" > |
58 <extra android:name="resource" | 56 <extra android:name="resource" |
59 android:value="preferences_devtools"/> | 57 android:value="preferences_devtools"/> |
60 </PreferenceScreen> | 58 </PreferenceScreen> |
61 | 59 |
62 </PreferenceScreen> | 60 </PreferenceScreen> |
OLD | NEW |