This page should not be searchable, as it corresponds to a specific access point, thus click on a search result would not have an access point in which to open. Fix WifiPicker bugs b/35883232 and b/35951638 that deal with UI jank. Bug: 34713316 Test: Tracked in b/35963536 and to be implemented in an immediate follow up CL. Change-Id: Iad7f26c7f04c3fc7d07a8e9188843eeb4d44cd36
74 lines
2.9 KiB
XML
74 lines
2.9 KiB
XML
<?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/com.android.settings" >
|
|
|
|
<!-- Connected Network Header -->
|
|
<Preference
|
|
android:key="connection_detail"
|
|
android:layout="@layout/connection_detail_pref"/>
|
|
|
|
<!-- General Details Category -->
|
|
<PreferenceCategory
|
|
android:key="general_details_category" >
|
|
<!-- Buttons -->
|
|
<com.android.settings.applications.LayoutPreference
|
|
android:key="forget_button"
|
|
android:selectable="false"
|
|
android:layout="@layout/single_button_panel" />
|
|
|
|
<com.android.settings.wifi.WifiDetailPreference
|
|
android:key="signal_strength"
|
|
android:title="@string/wifi_signal" />
|
|
|
|
<com.android.settings.wifi.WifiDetailPreference
|
|
android:key="frequency"
|
|
android:icon="@drawable/ic_frequency_antenna"
|
|
android:title="@string/wifi_frequency" />
|
|
|
|
<com.android.settings.wifi.WifiDetailPreference
|
|
android:key="security"
|
|
android:icon="@drawable/ic_security_lock_24dp"
|
|
android:title="@string/wifi_security" />
|
|
</PreferenceCategory>
|
|
|
|
<!-- IP Details -->
|
|
<PreferenceCategory
|
|
android:key="ip_details_category"
|
|
android:title="@string/wifi_ip_address">
|
|
<com.android.settings.wifi.WifiDetailPreference
|
|
android:key="ip_address"
|
|
android:title="@string/wifi_ip_address" />
|
|
<com.android.settings.wifi.WifiDetailPreference
|
|
android:key="router"
|
|
android:title="@string/wifi_gateway" />
|
|
<com.android.settings.wifi.WifiDetailPreference
|
|
android:key="subnet_mask"
|
|
android:title="@string/wifi_details_subnet_mask" />
|
|
<com.android.settings.wifi.WifiDetailPreference
|
|
android:key="dns"
|
|
android:title="@string/wifi_details_dns" />
|
|
</PreferenceCategory>
|
|
|
|
<!-- IPv6 Details -->
|
|
<PreferenceCategory
|
|
android:key="ipv6_details_category"
|
|
android:title="@string/wifi_details_ipv6_address_header" />
|
|
|
|
</PreferenceScreen>
|