mobile/android/base/resources/xml-v11/preferences.xml

Wed, 31 Dec 2014 07:22:50 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 07:22:50 +0100
branch
TOR_BUG_3246
changeset 4
fc2d59ddac77
permissions
-rw-r--r--

Correct previous dual key logic pending first delivery installment.

michael@0 1 <?xml version="1.0" encoding="utf-8"?>
michael@0 2 <!-- This Source Code Form is subject to the terms of the Mozilla Public
michael@0 3 - License, v. 2.0. If a copy of the MPL was not distributed with this
michael@0 4 - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
michael@0 5
michael@0 6 <!-- Phone v11+ only: Sync is a top-level menu item.
michael@0 7 See xml-v11/preference_headers.xml for tablet layout.
michael@0 8 Preference changes here should be mirrored to xml/preferences.xml.in. -->
michael@0 9
michael@0 10 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
michael@0 11 xmlns:gecko="http://schemas.android.com/apk/res-auto"
michael@0 12 android:enabled="false">
michael@0 13
michael@0 14 <org.mozilla.gecko.preferences.SyncPreference android:key="android.not_a_preference.sync"
michael@0 15 android:title="@string/pref_sync"
michael@0 16 android:persistent="false" />
michael@0 17
michael@0 18 <PreferenceScreen android:title="@string/pref_category_customize"
michael@0 19 android:fragment="org.mozilla.gecko.preferences.GeckoPreferenceFragment" >
michael@0 20 <extra android:name="resource"
michael@0 21 android:value="preferences_customize"/>
michael@0 22 </PreferenceScreen>
michael@0 23
michael@0 24 <PreferenceScreen android:title="@string/pref_category_display"
michael@0 25 android:fragment="org.mozilla.gecko.preferences.GeckoPreferenceFragment" >
michael@0 26 <extra android:name="resource"
michael@0 27 android:value="preferences_display" />
michael@0 28 </PreferenceScreen>
michael@0 29
michael@0 30
michael@0 31 <PreferenceScreen android:title="@string/pref_category_privacy_short"
michael@0 32 android:fragment="org.mozilla.gecko.preferences.GeckoPreferenceFragment" >
michael@0 33 <extra android:name="resource"
michael@0 34 android:value="preferences_privacy" />
michael@0 35 </PreferenceScreen>
michael@0 36
michael@0 37
michael@0 38 <PreferenceScreen android:title="@string/pref_category_vendor"
michael@0 39 android:fragment="org.mozilla.gecko.preferences.GeckoPreferenceFragment" >
michael@0 40 <extra android:name="resource"
michael@0 41 android:value="preferences_vendor"/>
michael@0 42 </PreferenceScreen>
michael@0 43
michael@0 44 <PreferenceScreen android:title="@string/pref_category_devtools"
michael@0 45 android:fragment="org.mozilla.gecko.preferences.GeckoPreferenceFragment" >
michael@0 46 <extra android:name="resource"
michael@0 47 android:value="preferences_devtools"/>
michael@0 48 </PreferenceScreen>
michael@0 49
michael@0 50 </PreferenceScreen>

mercurial