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

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

     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/. -->
     6 <!-- Phone v11+ only: Sync is a top-level menu item.
     7      See xml-v11/preference_headers.xml for tablet layout.
     8      Preference changes here should be mirrored to xml/preferences.xml.in. -->
    10 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
    11                   xmlns:gecko="http://schemas.android.com/apk/res-auto"
    12                   android:enabled="false">
    14     <org.mozilla.gecko.preferences.SyncPreference android:key="android.not_a_preference.sync"
    15                                                   android:title="@string/pref_sync"
    16                                                   android:persistent="false" />
    18     <PreferenceScreen android:title="@string/pref_category_customize"
    19                       android:fragment="org.mozilla.gecko.preferences.GeckoPreferenceFragment" >
    20         <extra android:name="resource"
    21                android:value="preferences_customize"/>
    22     </PreferenceScreen>
    24     <PreferenceScreen android:title="@string/pref_category_display"
    25                       android:fragment="org.mozilla.gecko.preferences.GeckoPreferenceFragment" >
    26         <extra android:name="resource"
    27                android:value="preferences_display" />
    28     </PreferenceScreen>
    31     <PreferenceScreen android:title="@string/pref_category_privacy_short"
    32                       android:fragment="org.mozilla.gecko.preferences.GeckoPreferenceFragment" >
    33         <extra android:name="resource"
    34                android:value="preferences_privacy" />
    35     </PreferenceScreen>
    38     <PreferenceScreen android:title="@string/pref_category_vendor"
    39                       android:fragment="org.mozilla.gecko.preferences.GeckoPreferenceFragment" >
    40         <extra android:name="resource"
    41                android:value="preferences_vendor"/>
    42     </PreferenceScreen>
    44     <PreferenceScreen android:title="@string/pref_category_devtools"
    45                       android:fragment="org.mozilla.gecko.preferences.GeckoPreferenceFragment" >
    46         <extra android:name="resource"
    47                android:value="preferences_devtools"/>
    48     </PreferenceScreen>
    50 </PreferenceScreen>

mercurial