50 lines
2.4 KiB
XML
50 lines
2.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
Copyright 2019 The Android Open Source Project
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
-->
|
|
|
|
<PreferenceScreen
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:settings="http://schemas.android.com/apk/res-auto"
|
|
android:title="@string/mobile_network_settings"
|
|
android:key="@string/psk_mobile_network">
|
|
<com.android.car.settings.datausage.DataUsageSummaryPreference
|
|
android:key="@string/pk_data_usage_summary"
|
|
settings:controller="com.android.car.settings.datausage.DataUsageSummaryPreferenceController"
|
|
android:selectable="false"
|
|
settings:singleLineTitle="false"/>
|
|
<com.android.car.settings.common.DividerPreference/>
|
|
<SwitchPreference
|
|
android:key="@string/pk_mobile_data_toggle"
|
|
android:summary="@string/mobile_network_toggle_summary"
|
|
android:title="@string/mobile_network_toggle_title"
|
|
settings:controller="com.android.car.settings.network.MobileDataTogglePreferenceController"/>
|
|
<SwitchPreference
|
|
android:key="@string/pk_mobile_roaming_toggle"
|
|
android:summary="@string/roaming_summary"
|
|
android:title="@string/roaming_title"
|
|
settings:controller="com.android.car.settings.network.RoamingPreferenceController"/>
|
|
<Preference
|
|
android:key="@string/pk_app_data_usage"
|
|
android:title="@string/app_data_usage"
|
|
settings:controller="com.android.car.settings.datausage.DataUsagePreferenceController"/>
|
|
<Preference
|
|
android:fragment="com.android.car.settings.datausage.DataWarningAndLimitFragment"
|
|
android:key="@string/pk_data_warning_and_limit"
|
|
android:title="@string/data_warning_limit_title"
|
|
settings:controller="com.android.car.settings.datausage.DataWarningAndLimitPreferenceController"
|
|
settings:searchable="false"/>
|
|
</PreferenceScreen>
|