1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2024 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
18    xmlns:android="http://schemas.android.com/apk/res/android"
19    xmlns:settings="http://schemas.android.com/apk/res-auto"
20    android:key="satellite_setting"
21    android:title="@string/satellite_setting"
22    settings:keywords="@string/keywords_satellite_setting">
23
24    <PreferenceCategory
25        android:key="key_category_about_satellite">
26
27        <com.android.settingslib.widget.TopIntroPreference
28            android:key="key_about_satellite_messaging"/>
29    </PreferenceCategory>
30
31    <PreferenceCategory
32        android:key="key_category_your_satellite_plan"
33        android:title="@string/category_title_your_satellite_plan">
34
35        <Preference
36            android:key="key_your_satellite_plan"
37            android:icon="?android:attr/textColorPrimary"/>
38
39        <Preference
40            android:key="key_your_satellite_data_plan"
41            android:icon="?android:attr/textColorPrimary"
42            settings:isPreferenceVisible="false"/>
43
44    </PreferenceCategory>
45
46    <PreferenceCategory
47        android:key="key_category_how_it_works"
48        android:title="@string/category_name_how_it_works"
49        android:clickable="false"
50        android:focusable="false">
51
52        <Preference
53            android:key="key_satellite_connection_guide"
54            android:title="@string/title_satellite_connection_guide"
55            android:summary="@string/summary_satellite_connection_guide"
56            android:icon="@drawable/ic_signal_cellular_nodata_24px"/>
57
58        <Preference
59            android:key="key_supported_service"
60            android:title="@string/title_supported_service"
61            android:summary="@string/summary_supported_service"
62            android:icon="@drawable/ic_android_satellite_24px"/>
63    </PreferenceCategory>
64
65    <com.android.settingslib.widget.FooterPreference
66        android:key="satellite_setting_extra_info_footer_pref"
67        android:layout="@layout/satellite_setting_more_information_layout"
68        android:selectable="false"
69        settings:searchable="false"/>
70
71</PreferenceScreen>
72