1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/mobile/android/base/resources/xml/preferences_customize.xml Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,59 @@ 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 +<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" 1.10 + xmlns:gecko="http://schemas.android.com/apk/res-auto" 1.11 + android:enabled="false"> 1.12 + 1.13 + <PreferenceScreen android:title="@string/pref_category_home" 1.14 + android:summary="@string/pref_category_home_summary" > 1.15 + <intent android:action="android.intent.action.VIEW" 1.16 + android:targetPackage="@string/android_package_name" 1.17 + android:targetClass="org.mozilla.gecko.preferences.GeckoPreferences" > 1.18 + <extra 1.19 + android:name="resource" 1.20 + android:value="preferences_home" /> 1.21 + </intent> 1.22 + </PreferenceScreen> 1.23 + 1.24 + <PreferenceScreen android:title="@string/pref_category_search" 1.25 + android:summary="@string/pref_category_search_summary" > 1.26 + 1.27 + <intent android:action="android.intent.action.VIEW" 1.28 + android:targetPackage="@string/android_package_name" 1.29 + android:targetClass="org.mozilla.gecko.preferences.GeckoPreferences" > 1.30 + <extra 1.31 + android:name="resource" 1.32 + android:value="preferences_search" /> 1.33 + </intent> 1.34 + </PreferenceScreen> 1.35 + 1.36 + <ListPreference android:key="android.not_a_preference.restoreSession3" 1.37 + android:title="@string/pref_restore" 1.38 + android:defaultValue="quit" 1.39 + android:entries="@array/pref_restore_entries" 1.40 + android:entryValues="@array/pref_restore_values" 1.41 + android:persistent="true" /> 1.42 + 1.43 + 1.44 + <org.mozilla.gecko.preferences.AndroidImportPreference 1.45 + android:key="android.not_a_preference.import_android" 1.46 + gecko:entries="@array/pref_import_android_entries" 1.47 + gecko:entryKeys="@array/pref_import_android_keys" 1.48 + gecko:initialValues="@array/pref_import_android_values" 1.49 + android:title="@string/pref_import_android" 1.50 + android:positiveButtonText="@string/bookmarkhistory_button_import" 1.51 + android:negativeButtonText="@string/button_cancel" 1.52 + android:persistent="false" /> 1.53 + 1.54 + 1.55 + <ListPreference android:key="app.update.autodownload" 1.56 + android:title="@string/pref_update_autodownload" 1.57 + android:entries="@array/pref_update_autodownload_entries" 1.58 + android:entryValues="@array/pref_update_autodownload_values" 1.59 + android:persistent="false" /> 1.60 + 1.61 +</PreferenceScreen> 1.62 +