1 <?xml version="1.0" encoding="utf-8"?> 2 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" 3 xmlns:phone="http://schemas.android.com/apk/res/com.android.phone" 4 android:title="@string/additional_gsm_call_settings"> 5 6 <com.android.phone.CLIRListPreference 7 android:key="button_clir_key" 8 android:title="@string/labelCallerId" 9 android:persistent="false" 10 android:defaultValue="DEFAULT" 11 android:entries="@array/clir_display_values" 12 android:entryValues="@array/clir_values" 13 android:dialogTitle="@string/labelCallerId" 14 android:summary="@string/sum_loading_settings" 15 android:enabled="false"/> 16 17 <com.android.phone.CallWaitingCheckBoxPreference 18 android:key="button_cw_key" 19 android:title="@string/labelCW" 20 android:persistent="false" 21 android:summaryOn="@string/sum_cw_enabled" 22 android:summaryOff="@string/sum_cw_disabled" 23 android:enabled="false"/> 24 </PreferenceScreen> 25