summaryrefslogtreecommitdiff
path: root/res/xml/network_setting.xml
diff options
context:
space:
mode:
Diffstat (limited to 'res/xml/network_setting.xml')
-rw-r--r--res/xml/network_setting.xml46
1 files changed, 46 insertions, 0 deletions
diff --git a/res/xml/network_setting.xml b/res/xml/network_setting.xml
new file mode 100644
index 00000000..7fd00fca
--- /dev/null
+++ b/res/xml/network_setting.xml
@@ -0,0 +1,46 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2008 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:phone="http://schemas.android.com/apk/res/com.android.phone"
+ android:title="@string/mobile_networks">
+
+ <PreferenceScreen
+ android:key="cdma_lte_data_service_key"
+ android:title="@string/cdma_lte_data_service">
+ </PreferenceScreen>
+
+ <CheckBoxPreference
+ android:key="button_data_enabled_key"
+ android:title="@string/data_enabled"
+ android:persistent="false"
+ android:summary="@string/data_enable_summary"/>
+
+ <CheckBoxPreference
+ android:key="button_roaming_key"
+ android:title="@string/roaming"
+ android:persistent="false"
+ android:summaryOn="@string/roaming_enable"
+ android:summaryOff="@string/roaming_disable"/>
+
+ <ListPreference
+ android:key="preferred_network_mode_key"
+ android:title="@string/preferred_network_mode_title"
+ android:summary="@string/preferred_network_mode_summary"
+ android:entries="@array/preferred_network_mode_choices"
+ android:entryValues="@array/preferred_network_mode_values"
+ android:dialogTitle="@string/preferred_network_mode_dialogtitle" />
+
+</PreferenceScreen>