1. Add account preference category to contacts storage settings page 2. Preload account icon in settings constructor 3. Re-fetch account in controller to refresh the default account after user sets a different default account. Test: atest SettingsRoboTests:com.android.settings.applications.contacts.ContactsStorageSettingsTest atest SettingsRoboTests:com.android.settings.applications.contacts.ContactsStoragePreferenceControllerTest Bug: 368641291 Flag: android.provider.new_default_account_api_enabled Change-Id: I3ca2a7a0905118c7a3a47fe4573781ae86c246bd
39 lines
1.6 KiB
XML
39 lines
1.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
~ Copyright (C) 2024 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/contacts_storage_settings_title">
|
|
|
|
<com.android.settingslib.widget.TopIntroPreference
|
|
android:title="@string/contacts_storage_selection_message" />
|
|
|
|
<PreferenceCategory
|
|
android:key="account_category"
|
|
android:persistent="false"
|
|
android:title="@string/contacts_storage_account_category_title">
|
|
</PreferenceCategory>
|
|
|
|
<com.android.settingslib.widget.SelectorWithWidgetPreference
|
|
android:key="device_only_account_preference"
|
|
android:summary="@string/contacts_storage_device_only_preference_summary"
|
|
android:title="@string/contacts_storage_device_only_preference_label"
|
|
android:icon="@drawable/cloud_off"
|
|
android:order="999"
|
|
settings:allowDividerAbove="true"/>
|
|
</PreferenceScreen>
|