| 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" | |
| 15 android:title="@string/pref_sy
nc" | |
| 16 android:persistent="false" /> | |
| 17 | |
| 18 <PreferenceScreen android:title="@string/pref_category_customize" | 14 <PreferenceScreen android:title="@string/pref_category_customize" |
| 19 android:fragment="org.mozilla.gecko.preferences.GeckoPrefe
renceFragment" > | 15 android:fragment="org.mozilla.gecko.preferences.GeckoPrefe
renceFragment" > |
| 20 <extra android:name="resource" | 16 <extra android:name="resource" |
| 21 android:value="preferences_customize"/> | 17 android:value="preferences_customize"/> |
| 22 </PreferenceScreen> | 18 </PreferenceScreen> |
| 23 | 19 |
| 24 <PreferenceScreen android:title="@string/pref_category_display" | 20 <PreferenceScreen android:title="@string/pref_category_display" |
| 25 android:fragment="org.mozilla.gecko.preferences.GeckoPrefe
renceFragment" > | 21 android:fragment="org.mozilla.gecko.preferences.GeckoPrefe
renceFragment" > |
| 26 <extra android:name="resource" | 22 <extra android:name="resource" |
| 27 android:value="preferences_display" /> | 23 android:value="preferences_display" /> |
| (...skipping 25 matching lines...) Expand all Loading... |
| 53 android:value="preferences_vendor"/> | 49 android:value="preferences_vendor"/> |
| 54 </PreferenceScreen> | 50 </PreferenceScreen> |
| 55 | 51 |
| 56 <PreferenceScreen android:title="@string/pref_category_devtools" | 52 <PreferenceScreen android:title="@string/pref_category_devtools" |
| 57 android:fragment="org.mozilla.gecko.preferences.GeckoPrefe
renceFragment" > | 53 android:fragment="org.mozilla.gecko.preferences.GeckoPrefe
renceFragment" > |
| 58 <extra android:name="resource" | 54 <extra android:name="resource" |
| 59 android:value="preferences_devtools"/> | 55 android:value="preferences_devtools"/> |
| 60 </PreferenceScreen> | 56 </PreferenceScreen> |
| 61 | 57 |
| 62 </PreferenceScreen> | 58 </PreferenceScreen> |
| OLD | NEW |