• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2016 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/com.android.settings" >
20
21    <!-- Connected Network Header -->
22    <Preference
23            android:key="connection_detail"
24            android:layout="@layout/connection_detail_pref"/>
25
26    <!-- General Details Category -->
27    <PreferenceCategory
28            android:key="general_details_category" >
29        <!-- Buttons -->
30        <com.android.settings.applications.LayoutPreference
31            android:key="buttons"
32            android:layout="@layout/wifi_network_details_two_buttons_panel"
33            android:selectable="false" />
34
35        <com.android.settings.wifi.WifiDetailPreference
36                android:key="signal_strength"
37                android:title="@string/wifi_signal"
38                android:selectable="false"/>
39
40        <com.android.settings.wifi.WifiDetailPreference
41                android:key="frequency"
42                android:icon="@drawable/ic_frequency_antenna"
43                android:title="@string/wifi_frequency"
44                android:selectable="false"/>
45
46        <com.android.settings.wifi.WifiDetailPreference
47                android:key="security"
48                android:icon="@drawable/ic_security_lock_24dp"
49                android:title="@string/wifi_security"
50                android:selectable="false"/>
51    </PreferenceCategory>
52
53    <!-- Network Details -->
54    <PreferenceCategory
55            android:key="ip_details_category"
56            android:title="@string/wifi_setup_detail">
57        <com.android.settings.wifi.WifiDetailPreference
58            android:key="mac_address"
59            android:title="@string/wifi_advanced_mac_address_title"
60            android:selectable="false"/>
61        <com.android.settings.wifi.WifiDetailPreference
62                android:key="ip_address"
63                android:title="@string/wifi_ip_address"
64                android:selectable="false"/>
65        <com.android.settings.wifi.WifiDetailPreference
66                android:key="gateway"
67                android:title="@string/wifi_gateway"
68                android:selectable="false"/>
69        <com.android.settings.wifi.WifiDetailPreference
70                android:key="subnet_mask"
71                android:title="@string/wifi_details_subnet_mask"
72                android:selectable="false"/>
73        <com.android.settings.wifi.WifiDetailPreference
74                android:key="dns"
75                android:title="@string/wifi_details_dns"
76                android:selectable="false"/>
77        <com.android.settings.wifi.WifiDetailPreference
78                android:key="link_speed"
79                android:title="@string/wifi_speed"
80                android:selectable="false"/>
81    </PreferenceCategory>
82
83    <!-- IPv6 Details -->
84    <PreferenceCategory
85            android:key="ipv6_category"
86            android:title="@string/wifi_details_ipv6_address_header"
87            android:selectable="false">
88        <Preference
89                android:key="ipv6_addresses"
90                android:selectable="false"/>
91    </PreferenceCategory>
92
93</PreferenceScreen>
94