mobile/android/base/resources/xml-v11/preferences_customize_tablet.xml

Wed, 31 Dec 2014 07:22:50 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 07:22:50 +0100
branch
TOR_BUG_3246
changeset 4
fc2d59ddac77
permissions
-rw-r--r--

Correct previous dual key logic pending first delivery installment.

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 <!-- Tablet only: The contents under the "Customize" header for tablets,
michael@0 7 See xml-v11/preferences.xml for single-pane v11+ phone layout.
michael@0 8 Changes to preferences shoudl be mirrored to preferences_customize.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:title="@string/pref_category_customize"
michael@0 13 android:enabled="false">
michael@0 14
michael@0 15 <org.mozilla.gecko.preferences.SyncPreference android:key="android.not_a_preference.sync"
michael@0 16 android:title="@string/pref_sync"
michael@0 17 android:persistent="false" />
michael@0 18
michael@0 19 <PreferenceScreen android:title="@string/pref_category_home"
michael@0 20 android:summary="@string/pref_category_home_summary"
michael@0 21 android:fragment="org.mozilla.gecko.preferences.GeckoPreferenceFragment" >
michael@0 22 <extra android:name="resource"
michael@0 23 android:value="preferences_home" />
michael@0 24 </PreferenceScreen>
michael@0 25
michael@0 26 <PreferenceScreen android:title="@string/pref_category_search"
michael@0 27 android:summary="@string/pref_category_search_summary"
michael@0 28 android:fragment="org.mozilla.gecko.preferences.GeckoPreferenceFragment" >
michael@0 29 <extra android:name="resource"
michael@0 30 android:value="preferences_search"/>
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 <org.mozilla.gecko.preferences.AndroidImportPreference
michael@0 41 android:key="android.not_a_preference.import_android"
michael@0 42 gecko:entries="@array/pref_import_android_entries"
michael@0 43 gecko:entryKeys="@array/pref_import_android_keys"
michael@0 44 gecko:initialValues="@array/pref_import_android_values"
michael@0 45 android:title="@string/pref_import_android"
michael@0 46 android:positiveButtonText="@string/bookmarkhistory_button_import"
michael@0 47 android:negativeButtonText="@string/button_cancel"
michael@0 48 android:persistent="false" />
michael@0 49
michael@0 50 <ListPreference android:key="app.update.autodownload"
michael@0 51 android:title="@string/pref_update_autodownload"
michael@0 52 android:entries="@array/pref_update_autodownload_entries"
michael@0 53 android:entryValues="@array/pref_update_autodownload_values"
michael@0 54 android:persistent="false" />
michael@0 55
michael@0 56 </PreferenceScreen>
michael@0 57

mercurial