mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 04:27:37 +00:00
68 lines
2.9 KiB
XML
68 lines
2.9 KiB
XML
#filter substitution
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- This Source Code Form is subject to the terms of the Mozilla Public
|
|
- License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
|
|
|
|
<!-- Preferences screen for pre-v11 Android devices that do not support
|
|
PreferenceFragment or ActionBar. Preference changes here should be mirrored
|
|
to xml-v11/preferences.xml. -->
|
|
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:gecko="http://schemas.android.com/apk/res-auto"
|
|
android:enabled="false">
|
|
|
|
<org.mozilla.gecko.SyncPreference android:title="@string/pref_sync"
|
|
android:persistent="false" />
|
|
|
|
<PreferenceScreen android:title="@string/pref_category_customize" >
|
|
<intent android:action="android.intent.action.VIEW"
|
|
android:targetPackage="@ANDROID_PACKAGE_NAME@"
|
|
android:targetClass="org.mozilla.gecko.GeckoPreferences" >
|
|
<extra
|
|
android:name="resource"
|
|
android:value="preferences_customize" />
|
|
</intent>
|
|
</PreferenceScreen>
|
|
|
|
<PreferenceScreen android:title="@string/pref_category_display" >
|
|
<intent android:action="android.intent.action.VIEW"
|
|
android:targetPackage="@ANDROID_PACKAGE_NAME@"
|
|
android:targetClass="org.mozilla.gecko.GeckoPreferences" >
|
|
<extra
|
|
android:name="resource"
|
|
android:value="preferences_display" />
|
|
</intent>
|
|
</PreferenceScreen>
|
|
|
|
<PreferenceScreen android:title="@string/pref_category_privacy_short" >
|
|
<intent android:action="android.intent.action.VIEW"
|
|
android:targetPackage="@ANDROID_PACKAGE_NAME@"
|
|
android:targetClass="org.mozilla.gecko.GeckoPreferences" >
|
|
<extra
|
|
android:name="resource"
|
|
android:value="preferences_privacy" />
|
|
</intent>
|
|
</PreferenceScreen>
|
|
|
|
<PreferenceScreen android:title="@string/pref_category_vendor">
|
|
<intent android:action="android.intent.action.VIEW"
|
|
android:targetPackage="@ANDROID_PACKAGE_NAME@"
|
|
android:targetClass="org.mozilla.gecko.GeckoPreferences" >
|
|
<extra
|
|
android:name="resource"
|
|
android:value="preferences_vendor" />
|
|
</intent>
|
|
</PreferenceScreen>
|
|
<PreferenceScreen android:title="@string/pref_category_devtools">
|
|
<intent android:action="android.intent.action.VIEW"
|
|
android:targetPackage="@ANDROID_PACKAGE_NAME@"
|
|
android:targetClass="org.mozilla.gecko.GeckoPreferences" >
|
|
<extra
|
|
android:name="resource"
|
|
android:value="preferences_devtools" />
|
|
</intent>
|
|
</PreferenceScreen>
|
|
|
|
</PreferenceScreen>
|