1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/mobile/android/base/resources/xml-v11/preferences_customize_tablet.xml Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,57 @@ 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 +<!-- Tablet only: The contents under the "Customize" header for tablets, 1.10 + See xml-v11/preferences.xml for single-pane v11+ phone layout. 1.11 + Changes to preferences shoudl be mirrored to preferences_customize.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:title="@string/pref_category_customize" 1.16 + android:enabled="false"> 1.17 + 1.18 + <org.mozilla.gecko.preferences.SyncPreference android:key="android.not_a_preference.sync" 1.19 + android:title="@string/pref_sync" 1.20 + android:persistent="false" /> 1.21 + 1.22 + <PreferenceScreen android:title="@string/pref_category_home" 1.23 + android:summary="@string/pref_category_home_summary" 1.24 + android:fragment="org.mozilla.gecko.preferences.GeckoPreferenceFragment" > 1.25 + <extra android:name="resource" 1.26 + android:value="preferences_home" /> 1.27 + </PreferenceScreen> 1.28 + 1.29 + <PreferenceScreen android:title="@string/pref_category_search" 1.30 + android:summary="@string/pref_category_search_summary" 1.31 + android:fragment="org.mozilla.gecko.preferences.GeckoPreferenceFragment" > 1.32 + <extra android:name="resource" 1.33 + android:value="preferences_search"/> 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 + <org.mozilla.gecko.preferences.AndroidImportPreference 1.44 + android:key="android.not_a_preference.import_android" 1.45 + gecko:entries="@array/pref_import_android_entries" 1.46 + gecko:entryKeys="@array/pref_import_android_keys" 1.47 + gecko:initialValues="@array/pref_import_android_values" 1.48 + android:title="@string/pref_import_android" 1.49 + android:positiveButtonText="@string/bookmarkhistory_button_import" 1.50 + android:negativeButtonText="@string/button_cancel" 1.51 + android:persistent="false" /> 1.52 + 1.53 + <ListPreference android:key="app.update.autodownload" 1.54 + android:title="@string/pref_update_autodownload" 1.55 + android:entries="@array/pref_update_autodownload_entries" 1.56 + android:entryValues="@array/pref_update_autodownload_values" 1.57 + android:persistent="false" /> 1.58 + 1.59 +</PreferenceScreen> 1.60 +