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 <!-- Tablet only: The contents under the "Customize" header for tablets, | 6 <!-- Tablet only: The contents under the "Customize" header for tablets, |
7 See xml-v11/preferences.xml for single-pane v11+ phone layout. | 7 See xml-v11/preferences.xml for single-pane v11+ phone layout. |
8 Changes to preferences should be mirrored to preferences_customize.xml. --> | 8 Changes to preferences should be mirrored to preferences_customize.xml. --> |
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:title="@string/pref_category_customize" | 12 android:title="@string/pref_category_customize" |
13 android:enabled="false"> | 13 android:enabled="false"> |
14 | 14 |
15 <org.mozilla.gecko.preferences.SyncPreference android:key="android.not_a_pre
ference.sync" | |
16 android:title="@string/pref_sy
nc" | |
17 android:persistent="false" /> | |
18 | |
19 <PreferenceScreen android:title="@string/pref_category_home" | 15 <PreferenceScreen android:title="@string/pref_category_home" |
20 android:summary="@string/pref_category_home_summary" | 16 android:summary="@string/pref_category_home_summary" |
21 android:fragment="org.mozilla.gecko.preferences.GeckoPrefe
renceFragment" > | 17 android:fragment="org.mozilla.gecko.preferences.GeckoPrefe
renceFragment" > |
22 <extra android:name="resource" | 18 <extra android:name="resource" |
23 android:value="preferences_home" /> | 19 android:value="preferences_home" /> |
24 </PreferenceScreen> | 20 </PreferenceScreen> |
25 | 21 |
26 <PreferenceScreen android:title="@string/pref_category_search" | 22 <PreferenceScreen android:title="@string/pref_category_search" |
27 android:summary="@string/pref_category_search_summary" | 23 android:summary="@string/pref_category_search_summary" |
28 android:fragment="org.mozilla.gecko.preferences.GeckoPrefe
renceFragment" > | 24 android:fragment="org.mozilla.gecko.preferences.GeckoPrefe
renceFragment" > |
(...skipping 20 matching lines...) Expand all Loading... |
49 android:persistent="false" /> | 45 android:persistent="false" /> |
50 | 46 |
51 <ListPreference android:key="app.update.autodownload" | 47 <ListPreference android:key="app.update.autodownload" |
52 android:title="@string/pref_update_autodownload" | 48 android:title="@string/pref_update_autodownload" |
53 android:entries="@array/pref_update_autodownload_entries" | 49 android:entries="@array/pref_update_autodownload_entries" |
54 android:entryValues="@array/pref_update_autodownload_values" | 50 android:entryValues="@array/pref_update_autodownload_values" |
55 android:persistent="false" /> | 51 android:persistent="false" /> |
56 | 52 |
57 </PreferenceScreen> | 53 </PreferenceScreen> |
58 | 54 |
OLD | NEW |