summaryrefslogtreecommitdiffstats
path: root/res/xml/wifi_network_details_fragment.xml
blob: 45e734901198e48661ef071d07f31976f85d18ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2016 The Android Open Source Project

     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
     You may obtain a copy of the License at

          http://www.apache.org/licenses/LICENSE-2.0

     Unless required by applicable law or agreed to in writing, software
     distributed under the License is distributed on an "AS IS" BASIS,
     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     See the License for the specific language governing permissions and
     limitations under the License.
-->

<PreferenceScreen
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:settings="http://schemas.android.com/apk/res-auto"
    settings:initialExpandedChildrenCount="5">

    <com.android.settingslib.widget.LayoutPreference
        android:key="connection_header"
        android:layout="@layout/settings_entity_header"
        android:selectable="false"
        android:order="-10000"
        settings:allowDividerBelow="true"/>

    <!-- Buttons -->
    <com.android.settings.widget.ActionButtonPreference
        android:key="buttons"
        android:selectable="false" />

    <!-- General Details Category -->
    <PreferenceCategory
            android:key="general_details_category" >
        <com.android.settings.wifi.WifiDetailPreference
                android:key="signal_strength"
                android:title="@string/wifi_signal"
                android:selectable="false"/>

        <com.android.settings.wifi.WifiDetailPreference
                android:key="frequency"
                android:icon="@drawable/ic_frequency_antenna"
                android:title="@string/wifi_frequency"
                android:selectable="false"/>

        <com.android.settings.wifi.WifiDetailPreference
                android:key="security"
                android:icon="@drawable/ic_security_lock_24dp"
                android:title="@string/wifi_security"
                android:selectable="false"/>

        <DropDownPreference
                android:key="metered"
                android:icon="@drawable/ic_attach_money_black_24dp"
                android:title="@string/data_usage_metered_yes"
                android:entries="@array/wifi_metered_entries"
                android:entryValues="@array/wifi_metered_values"/>

        <DropDownPreference
            android:key="privacy"
            android:title="@string/wifi_privacy_settings"
            android:entries="@array/wifi_privacy_entries"
            android:entryValues="@array/wifi_privacy_values"/>
    </PreferenceCategory>

    <!-- Network Details -->
    <PreferenceCategory
            android:key="ip_details_category"
            android:title="@string/wifi_setup_detail">
        <com.android.settings.wifi.WifiDetailPreference
            android:key="mac_address"
            android:title="@string/wifi_advanced_mac_address_title"
            android:selectable="false"/>
        <com.android.settings.wifi.WifiDetailPreference
                android:key="ip_address"
                android:title="@string/wifi_ip_address"
                android:selectable="false"/>
        <com.android.settings.wifi.WifiDetailPreference
                android:key="gateway"
                android:title="@string/wifi_gateway"
                android:selectable="false"/>
        <com.android.settings.wifi.WifiDetailPreference
                android:key="subnet_mask"
                android:title="@string/wifi_details_subnet_mask"
                android:selectable="false"/>
        <com.android.settings.wifi.WifiDetailPreference
                android:key="dns"
                android:title="@string/wifi_details_dns"
                android:selectable="false"/>
        <com.android.settings.wifi.WifiDetailPreference
                android:key="link_speed"
                android:title="@string/wifi_speed"
                android:selectable="false"/>
    </PreferenceCategory>

    <!-- IPv6 Details -->
    <PreferenceCategory
            android:key="ipv6_category"
            android:title="@string/wifi_details_ipv6_address_header"
            android:selectable="false">
        <Preference
                android:key="ipv6_addresses"
                android:selectable="false"/>
    </PreferenceCategory>
</PreferenceScreen>