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 17<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"> 18 19 <com.android.phone.CdmaSystemSelectListPreference 20 android:key="cdma_system_select_key" 21 android:title="@string/cdma_system_select_title" 22 android:summary="@string/cdma_system_select_summary" 23 android:entries="@array/cdma_system_select_choices" 24 android:entryValues="@array/cdma_system_select_values" 25 android:dialogTitle="@string/cdma_system_select_dialogtitle" /> 26 27 <com.android.phone.CdmaSubscriptionListPreference 28 android:key="cdma_subscription_key" 29 android:title="@string/cdma_subscription_title" 30 android:summary="@string/cdma_subscription_summary" 31 android:entries="@array/cdma_subscription_choices" 32 android:entryValues="@array/cdma_subscription_values" 33 android:dialogTitle="@string/cdma_subscription_dialogtitle" /> 34 35 <!--We want separate APN setting from reset of settings because--> 36 <!--we want user to change it with caution.--> 37 <PreferenceCategory 38 android:key="category_cdma_apn_key"> 39 <!-- The launching Intent will be defined thru code as we need to pass some Extra --> 40 <com.android.phone.RestrictedPreference 41 android:key="button_cdma_apn_key" 42 android:title="@string/apn_settings" 43 android:persistent="false"/> 44 </PreferenceCategory> 45 46 <Preference 47 android:key="carrier_settings_key" 48 android:title="@string/carrier_settings_title"> 49 <intent android:action="android.intent.action.MAIN" 50 android:targetPackage="@string/carrier_settings" 51 android:targetClass="@string/carrier_settings_menu" /> 52 </Preference> 53 54</PreferenceScreen> 55