1<?xml version="1.0" encoding="utf-8"?>
2<!--
3    Copyright (C) 2015 The Android Open Source Project
4
5    Licensed under the Apache License, Version 2.0 (the "License");
6    you may not use this file except in compliance with the License.
7    You may obtain a copy of the License at
8
9         http://www.apache.org/licenses/LICENSE-2.0
10
11    Unless required by applicable law or agreed to in writing, software
12    distributed under the License is distributed on an "AS IS" BASIS,
13    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14    See the License for the specific language governing permissions and
15    limitations under the License.
16-->
17<!-- Preference screen definition for Bugle's subscription-specific settings -->
18<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
19
20    <PreferenceCategory
21        android:key="@string/mms_messaging_category_pref_key"
22        android:title="@string/mms_messaging_category_pref_title">
23
24        <Preference
25            android:title="@string/group_mms_pref_title"
26            android:key="@string/group_mms_pref_key"/>
27
28        <com.android.messaging.ui.appsettings.PhoneNumberPreference
29            android:key="@string/mms_phone_number_pref_key"
30            android:title="@string/mms_phone_number_pref_title" />
31
32        <CheckBoxPreference
33            android:key="@string/auto_retrieve_mms_pref_key"
34            android:title="@string/auto_retrieve_mms_pref_title"
35            android:summary="@string/auto_retrieve_mms_pref_summary"
36            android:defaultValue="@bool/auto_retrieve_mms_pref_default" />
37
38        <CheckBoxPreference
39            android:key="@string/auto_retrieve_mms_when_roaming_pref_key"
40            android:dependency="@string/auto_retrieve_mms_pref_key"
41            android:title="@string/auto_retrieve_mms_when_roaming_pref_title"
42            android:summary="@string/auto_retrieve_mms_when_roaming_pref_summary"
43            android:defaultValue="@bool/auto_retrieve_mms_when_roaming_pref_default" />
44
45    </PreferenceCategory>
46
47    <PreferenceCategory
48        android:key="@string/advanced_category_pref_key"
49        android:title="@string/advanced_category_pref_title">
50
51        <CheckBoxPreference
52            android:key="@string/delivery_reports_pref_key"
53            android:title="@string/delivery_reports_pref_title"
54            android:summary="@string/delivery_reports_pref_summary"
55            android:defaultValue="@bool/delivery_reports_pref_default" />
56
57        <Preference
58            android:key="@string/wireless_alerts_key"
59            android:title="@string/wireless_alerts_title"/>
60
61        <PreferenceScreen
62            android:key="@string/sms_apns_key"
63            android:title="@string/sms_apns_title" />
64
65    </PreferenceCategory>
66</PreferenceScreen>
67