1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2008 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<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
17    xmlns:phone="http://schemas.android.com/apk/res/com.android.phone"
18        android:title="@string/mobile_networks">
19
20    <PreferenceScreen
21        android:key="cdma_lte_data_service_key"
22        android:title="@string/cdma_lte_data_service">
23    </PreferenceScreen>
24
25    <SwitchPreference
26        android:key="button_roaming_key"
27        android:title="@string/roaming"
28        android:persistent="false"
29        android:summaryOn="@string/roaming_enable"
30        android:summaryOff="@string/roaming_disable"/>
31
32    <ListPreference
33        android:key="preferred_network_mode_key"
34        android:title="@string/preferred_network_mode_title"
35        android:summary="@string/preferred_network_mode_summary"
36        android:entries="@array/preferred_network_mode_choices"
37        android:entryValues="@array/preferred_network_mode_values"
38        android:dialogTitle="@string/preferred_network_mode_dialogtitle" />
39
40    <ListPreference
41        android:key="enabled_networks_key"
42        android:title="@string/preferred_network_mode_title"
43        android:summary="@string/preferred_network_mode_summary"
44        android:entries="@array/enabled_networks_choices"
45        android:entryValues="@array/enabled_networks_values"
46        android:dialogTitle="@string/preferred_network_mode_dialogtitle" />
47
48    <SwitchPreference
49        android:key="enhanced_4g_lte"
50        android:title="@string/enhanced_4g_lte_mode_title"
51        android:persistent="false"
52        android:summary="@string/enhanced_4g_lte_mode_summary"/>
53
54</PreferenceScreen>
55