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

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/mobile/android/base/resources/xml/preferences.xml	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,67 @@
     1.4 +<?xml version="1.0" encoding="utf-8"?>
     1.5 +<!-- This Source Code Form is subject to the terms of the Mozilla Public
     1.6 +   - License, v. 2.0. If a copy of the MPL was not distributed with this
     1.7 +   - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
     1.8 +
     1.9 +<!-- Preferences screen for pre-v11 Android devices that do not support
    1.10 +     PreferenceFragment or ActionBar. Preference changes here should be mirrored
    1.11 +     to xml-v11/preferences.xml. -->
    1.12 +
    1.13 +<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
    1.14 +                  xmlns:gecko="http://schemas.android.com/apk/res-auto"
    1.15 +                  android:enabled="false">
    1.16 +
    1.17 +    <org.mozilla.gecko.preferences.SyncPreference android:key="android.not_a_preference.sync"
    1.18 +                                                  android:title="@string/pref_sync"
    1.19 +                                                  android:persistent="false" />
    1.20 +
    1.21 +    <PreferenceScreen android:title="@string/pref_category_customize" >
    1.22 +        <intent android:action="android.intent.action.VIEW"
    1.23 +                android:targetPackage="@string/android_package_name"
    1.24 +                android:targetClass="org.mozilla.gecko.preferences.GeckoPreferences" >
    1.25 +            <extra
    1.26 +                android:name="resource"
    1.27 +                android:value="preferences_customize" />
    1.28 +        </intent>
    1.29 +    </PreferenceScreen>
    1.30 +
    1.31 +    <PreferenceScreen android:title="@string/pref_category_display" >
    1.32 +        <intent android:action="android.intent.action.VIEW"
    1.33 +                android:targetPackage="@string/android_package_name"
    1.34 +                android:targetClass="org.mozilla.gecko.preferences.GeckoPreferences" >
    1.35 +            <extra
    1.36 +                android:name="resource"
    1.37 +                android:value="preferences_display" />
    1.38 +        </intent>
    1.39 +    </PreferenceScreen>
    1.40 +
    1.41 +    <PreferenceScreen android:title="@string/pref_category_privacy_short" >
    1.42 +        <intent android:action="android.intent.action.VIEW"
    1.43 +                android:targetPackage="@string/android_package_name"
    1.44 +                android:targetClass="org.mozilla.gecko.preferences.GeckoPreferences" >
    1.45 +            <extra
    1.46 +                android:name="resource"
    1.47 +                android:value="preferences_privacy" />
    1.48 +        </intent>
    1.49 +    </PreferenceScreen>
    1.50 +
    1.51 +    <PreferenceScreen android:title="@string/pref_category_vendor">
    1.52 +        <intent android:action="android.intent.action.VIEW"
    1.53 +                android:targetPackage="@string/android_package_name"
    1.54 +                android:targetClass="org.mozilla.gecko.preferences.GeckoPreferences" >
    1.55 +            <extra
    1.56 +                android:name="resource"
    1.57 +                android:value="preferences_vendor" />
    1.58 +        </intent>
    1.59 +    </PreferenceScreen>
    1.60 +    <PreferenceScreen android:title="@string/pref_category_devtools">
    1.61 +        <intent android:action="android.intent.action.VIEW"
    1.62 +                android:targetPackage="@string/android_package_name"
    1.63 +                android:targetClass="org.mozilla.gecko.preferences.GeckoPreferences" >
    1.64 +            <extra
    1.65 +                android:name="resource"
    1.66 +                android:value="preferences_devtools" />
    1.67 +        </intent>
    1.68 +    </PreferenceScreen>
    1.69 +
    1.70 +</PreferenceScreen>

mercurial