• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2019 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:title="@string/wifi_settings"
21        settings:keywords="@string/keywords_wifi">
22
23    <com.android.car.developeroptions.wifi.LinkablePreference
24        android:key="wifi_status_message"/>
25
26    <PreferenceCategory
27        android:key="connected_access_point"
28        android:layout="@layout/preference_category_no_label"/>
29
30    <PreferenceCategory
31        android:key="access_points"
32        android:layout="@layout/preference_category_no_label"/>
33
34    <Preference
35        android:key="configure_settings"
36        android:title="@string/wifi_configure_settings_preference_title"
37        settings:allowDividerAbove="true"
38        android:fragment="com.android.car.developeroptions.wifi.ConfigureWifiSettings"/>
39
40    <Preference
41        android:key="saved_networks"
42        android:title="@string/wifi_saved_access_points_label"
43        android:fragment="com.android.car.developeroptions.wifi.savedaccesspoints.SavedAccessPointsWifiSettings"/>
44
45    <com.android.car.developeroptions.datausage.DataUsagePreference
46        android:key="wifi_data_usage"
47        android:title="@string/wifi_data_usage"/>
48</PreferenceScreen>
49