mobile/android/base/resources/xml/preferences_customize.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 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
michael@0 7 xmlns:gecko="http://schemas.android.com/apk/res-auto"
michael@0 8 android:enabled="false">
michael@0 9
michael@0 10 <PreferenceScreen android:title="@string/pref_category_home"
michael@0 11 android:summary="@string/pref_category_home_summary" >
michael@0 12 <intent android:action="android.intent.action.VIEW"
michael@0 13 android:targetPackage="@string/android_package_name"
michael@0 14 android:targetClass="org.mozilla.gecko.preferences.GeckoPreferences" >
michael@0 15 <extra
michael@0 16 android:name="resource"
michael@0 17 android:value="preferences_home" />
michael@0 18 </intent>
michael@0 19 </PreferenceScreen>
michael@0 20
michael@0 21 <PreferenceScreen android:title="@string/pref_category_search"
michael@0 22 android:summary="@string/pref_category_search_summary" >
michael@0 23
michael@0 24 <intent android:action="android.intent.action.VIEW"
michael@0 25 android:targetPackage="@string/android_package_name"
michael@0 26 android:targetClass="org.mozilla.gecko.preferences.GeckoPreferences" >
michael@0 27 <extra
michael@0 28 android:name="resource"
michael@0 29 android:value="preferences_search" />
michael@0 30 </intent>
michael@0 31 </PreferenceScreen>
michael@0 32
michael@0 33 <ListPreference android:key="android.not_a_preference.restoreSession3"
michael@0 34 android:title="@string/pref_restore"
michael@0 35 android:defaultValue="quit"
michael@0 36 android:entries="@array/pref_restore_entries"
michael@0 37 android:entryValues="@array/pref_restore_values"
michael@0 38 android:persistent="true" />
michael@0 39
michael@0 40
michael@0 41 <org.mozilla.gecko.preferences.AndroidImportPreference
michael@0 42 android:key="android.not_a_preference.import_android"
michael@0 43 gecko:entries="@array/pref_import_android_entries"
michael@0 44 gecko:entryKeys="@array/pref_import_android_keys"
michael@0 45 gecko:initialValues="@array/pref_import_android_values"
michael@0 46 android:title="@string/pref_import_android"
michael@0 47 android:positiveButtonText="@string/bookmarkhistory_button_import"
michael@0 48 android:negativeButtonText="@string/button_cancel"
michael@0 49 android:persistent="false" />
michael@0 50
michael@0 51
michael@0 52 <ListPreference android:key="app.update.autodownload"
michael@0 53 android:title="@string/pref_update_autodownload"
michael@0 54 android:entries="@array/pref_update_autodownload_entries"
michael@0 55 android:entryValues="@array/pref_update_autodownload_values"
michael@0 56 android:persistent="false" />
michael@0 57
michael@0 58 </PreferenceScreen>
michael@0 59

mercurial