• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2015 The Android Open Source Project
3
4     Licensed under the Apache License, Version 2.0 (the "License");
5     you may not use this file except in compliance with the License.
6     You may obtain a copy of the License at
7
8          http://www.apache.org/licenses/LICENSE-2.0
9
10     Unless required by applicable law or agreed to in writing, software
11     distributed under the License is distributed on an "AS IS" BASIS,
12     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13     See the License for the specific language governing permissions and
14     limitations under the License.
15-->
16
17<PreferenceScreen
18    xmlns:android="http://schemas.android.com/apk/res/android"
19    xmlns:settings="http://schemas.android.com/apk/res-auto"
20    android:key="wifi_configure_settings_screen"
21    android:title="@string/wifi_configure_settings_preference_title">
22
23    <SwitchPreference
24        android:key="enable_wifi_wakeup"
25        android:title="@string/wifi_wakeup"
26        android:icon="@drawable/ic_auto_wifi"
27        android:summary="@string/wifi_wakeup_summary" />
28
29    <SwitchPreference
30        android:key="use_open_wifi_automatically"
31        android:icon="@drawable/ic_open_wifi_autoconnect"
32        android:title="@string/use_open_wifi_automatically_title"
33        android:summary="@string/use_open_wifi_automatically_summary" />
34
35    <SwitchPreference
36        android:key="notify_open_networks"
37        android:title="@string/wifi_notify_open_networks"
38        android:icon="@drawable/ic_open_wifi_notifications"
39        android:summary="@string/wifi_notify_open_networks_summary" />
40
41    <SwitchPreference
42        android:key="wifi_cellular_data_fallback"
43        android:title="@string/wifi_cellular_data_fallback_title"
44        android:summary="@string/wifi_cellular_data_fallback_summary" />
45
46    <Preference
47        android:key="install_credentials"
48        android:title="@string/wifi_install_credentials">
49        <intent android:action="android.credentials.INSTALL_AS_USER"
50                android:targetPackage="com.android.certinstaller"
51                android:targetClass="com.android.certinstaller.CertInstallerMain">
52            <extra android:name="install_as_uid" android:value="1010" />
53        </intent>
54    </Preference>
55
56    <Preference
57        android:key="network_scorer_picker"
58        android:title="@string/network_scorer_picker_title"
59        android:fragment="com.android.settings.network.NetworkScorerPicker"
60        settings:controller="com.android.settings.network.NetworkScorerPickerPreferenceController" />
61
62    <Preference
63        android:key="wifi_direct"
64        android:title="@string/wifi_menu_p2p"
65        android:fragment="com.android.settings.wifi.p2p.WifiP2pSettings" />
66
67    <Preference
68        android:key="mac_address"
69        android:title="@string/wifi_advanced_mac_address_title" />
70
71    <Preference
72        android:key="current_ip_address"
73        android:title="@string/wifi_advanced_ip_address_title" />
74
75</PreferenceScreen>
76