mobile/android/base/resources/xml/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

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 <!-- Preferences screen for pre-v11 Android devices that do not support
michael@0 7 PreferenceFragment or ActionBar. Preference changes here should be mirrored
michael@0 8 to xml-v11/preferences.xml. -->
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 <intent android:action="android.intent.action.VIEW"
michael@0 20 android:targetPackage="@string/android_package_name"
michael@0 21 android:targetClass="org.mozilla.gecko.preferences.GeckoPreferences" >
michael@0 22 <extra
michael@0 23 android:name="resource"
michael@0 24 android:value="preferences_customize" />
michael@0 25 </intent>
michael@0 26 </PreferenceScreen>
michael@0 27
michael@0 28 <PreferenceScreen android:title="@string/pref_category_display" >
michael@0 29 <intent android:action="android.intent.action.VIEW"
michael@0 30 android:targetPackage="@string/android_package_name"
michael@0 31 android:targetClass="org.mozilla.gecko.preferences.GeckoPreferences" >
michael@0 32 <extra
michael@0 33 android:name="resource"
michael@0 34 android:value="preferences_display" />
michael@0 35 </intent>
michael@0 36 </PreferenceScreen>
michael@0 37
michael@0 38 <PreferenceScreen android:title="@string/pref_category_privacy_short" >
michael@0 39 <intent android:action="android.intent.action.VIEW"
michael@0 40 android:targetPackage="@string/android_package_name"
michael@0 41 android:targetClass="org.mozilla.gecko.preferences.GeckoPreferences" >
michael@0 42 <extra
michael@0 43 android:name="resource"
michael@0 44 android:value="preferences_privacy" />
michael@0 45 </intent>
michael@0 46 </PreferenceScreen>
michael@0 47
michael@0 48 <PreferenceScreen android:title="@string/pref_category_vendor">
michael@0 49 <intent android:action="android.intent.action.VIEW"
michael@0 50 android:targetPackage="@string/android_package_name"
michael@0 51 android:targetClass="org.mozilla.gecko.preferences.GeckoPreferences" >
michael@0 52 <extra
michael@0 53 android:name="resource"
michael@0 54 android:value="preferences_vendor" />
michael@0 55 </intent>
michael@0 56 </PreferenceScreen>
michael@0 57 <PreferenceScreen android:title="@string/pref_category_devtools">
michael@0 58 <intent android:action="android.intent.action.VIEW"
michael@0 59 android:targetPackage="@string/android_package_name"
michael@0 60 android:targetClass="org.mozilla.gecko.preferences.GeckoPreferences" >
michael@0 61 <extra
michael@0 62 android:name="resource"
michael@0 63 android:value="preferences_devtools" />
michael@0 64 </intent>
michael@0 65 </PreferenceScreen>
michael@0 66
michael@0 67 </PreferenceScreen>

mercurial