mobile/android/base/resources/xml/preferences_display.xml

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/mobile/android/base/resources/xml/preferences_display.xml	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,49 @@
     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:title="@string/pref_category_display"
    1.12 +                  android:enabled="false">
    1.13 +
    1.14 +    <org.mozilla.gecko.preferences.FontSizePreference
    1.15 +                    android:key="font.size.inflation.minTwips"
    1.16 +                    android:title="@string/pref_text_size"
    1.17 +                    android:positiveButtonText="@string/pref_font_size_set"
    1.18 +                    android:negativeButtonText="@string/button_cancel"
    1.19 +                    android:persistent="false" />
    1.20 +
    1.21 +    <ListPreference android:key="browser.chrome.titlebarMode"
    1.22 +                    android:title="@string/pref_titlebar_mode"
    1.23 +                    android:entries="@array/pref_titlebar_mode_entries"
    1.24 +                    android:entryValues="@array/pref_titlebar_mode_values"
    1.25 +                    android:persistent="false" />
    1.26 +
    1.27 +    <CheckBoxPreference android:key="browser.chrome.dynamictoolbar"
    1.28 +                        android:title="@string/pref_scroll_title_bar" />
    1.29 +
    1.30 +    <PreferenceCategory android:title="@string/pref_category_advanced">
    1.31 +
    1.32 +        <CheckBoxPreference
    1.33 +                        android:key="browser.zoom.reflowOnZoom"
    1.34 +                        android:title="@string/pref_reflow_on_zoom"
    1.35 +                        android:defaultValue="false"
    1.36 +                        android:persistent="false" />
    1.37 +
    1.38 +        <ListPreference android:key="browser.menu.showCharacterEncoding"
    1.39 +                        android:title="@string/pref_char_encoding"
    1.40 +                        android:entries="@array/pref_char_encoding_entries"
    1.41 +                        android:entryValues="@array/pref_char_encoding_values"
    1.42 +                        android:persistent="false" />
    1.43 +
    1.44 +        <ListPreference android:key="plugin.enable"
    1.45 +                        android:title="@string/pref_plugins"
    1.46 +                        android:entries="@array/pref_plugins_entries"
    1.47 +                        android:entryValues="@array/pref_plugins_values"
    1.48 +                        android:persistent="false" />
    1.49 +
    1.50 +    </PreferenceCategory>
    1.51 +
    1.52 +</PreferenceScreen>

mercurial