• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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        android:title="@string/mobile_networks">
18
19    <PreferenceScreen
20        android:key="cdma_lte_data_service_key"
21        android:title="@string/cdma_lte_data_service">
22    </PreferenceScreen>
23
24    <com.android.phone.RestrictedSwitchPreference
25        android:key="button_roaming_key"
26        android:title="@string/roaming"
27        android:persistent="false"
28        android:summaryOn="@string/roaming_enable"
29        android:summaryOff="@string/roaming_disable"/>
30
31    <ListPreference
32        android:key="preferred_network_mode_key"
33        android:title="@string/preferred_network_mode_title"
34        android:summary="@string/preferred_network_mode_summary"
35        android:entries="@array/preferred_network_mode_choices"
36        android:entryValues="@array/preferred_network_mode_values"
37        android:dialogTitle="@string/preferred_network_mode_dialogtitle" />
38
39    <ListPreference
40        android:key="enabled_networks_key"
41        android:title="@string/preferred_network_mode_title"
42        android:summary="@string/preferred_network_mode_summary"
43        android:entries="@array/enabled_networks_choices"
44        android:entryValues="@array/enabled_networks_values"
45        android:dialogTitle="@string/preferred_network_mode_dialogtitle" />
46
47    <SwitchPreference
48        android:key="enhanced_4g_lte"
49        android:title="@string/enhanced_4g_lte_mode_title"
50        android:persistent="false"
51        android:summary="@string/enhanced_4g_lte_mode_summary"/>
52
53</PreferenceScreen>
54