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:title="@string/category_name_about_satellite_connectivity" 26 android:key="key_category_about_satellite" 27 settings:controller="com.android.settings.network.telephony.satellite.SatelliteSettingAboutContentController"> 28 29 <com.android.settingslib.widget.TopIntroPreference 30 android:key="key_about_satellite_connectivity"/> 31 </PreferenceCategory> 32 33 <PreferenceCategory 34 android:key="key_category_your_satellite_plan" 35 android:title="@string/category_title_your_satellite_plan" 36 settings:controller="com.android.settings.network.telephony.satellite.SatelliteSettingAccountInfoController"> 37 38 <Preference 39 android:key="key_your_satellite_plan" 40 android:icon="?android:attr/textColorPrimary"/> 41 42 <Preference 43 android:key="key_your_satellite_data_plan" 44 android:icon="?android:attr/textColorPrimary" 45 settings:isPreferenceVisible="false"/> 46 47 </PreferenceCategory> 48 49 <PreferenceCategory 50 android:key="key_category_how_it_works" 51 android:title="@string/category_name_how_it_works" 52 android:clickable="false" 53 android:focusable="false"> 54 55 <Preference 56 android:key="key_satellite_connection_guide" 57 android:title="@string/title_satellite_connection_guide" 58 android:summary="@string/summary_satellite_connection_guide" 59 android:icon="@drawable/ic_signal_cellular_nodata_24px"/> 60 61 <Preference 62 android:key="key_supported_service" 63 android:title="@string/title_supported_service" 64 android:summary="@string/summary_supported_service" 65 android:icon="@drawable/ic_android_satellite_24px"/> 66 </PreferenceCategory> 67 68 <PreferenceCategory 69 android:key="key_category_satellite_apps" 70 android:title="@string/category_title_satellite_supported_apps" 71 settings:isPreferenceVisible="false" 72 settings:controller="com.android.settings.network.telephony.satellite.SatelliteAppListCategoryController" 73 settings:searchable="false"> 74 75 <!-- See all satellite apps --> 76 <Preference 77 android:key="key_see_all_satellite_apps" 78 android:title="@string/title_satellite_supported_app_list_entry" 79 android:icon="@drawable/ic_chevron_right_24dp" 80 android:fragment="com.android.settings.network.telephony.satellite.SatelliteAppListFragment" 81 android:order="5" 82 settings:searchable="false"/> 83 </PreferenceCategory> 84 85 <com.android.settingslib.widget.FooterPreference 86 android:key="satellite_setting_extra_info_footer_pref" 87 android:layout="@layout/satellite_setting_more_information_layout" 88 android:selectable="false" 89 settings:searchable="false" 90 settings:controller="com.android.settings.network.telephony.satellite.SatelliteSettingFooterController"/> 91 92</PreferenceScreen> 93