In this change, Storage Settings main UI is composed by 3 fragments. StorageDashboardFragment only shows when there is only personal profile for current user. ProfileSelectStorageFragment (controls preferences above profile tab) and StorageDashboardNoHeaderFragment (controls preferences below profile tab) only show when current user has installed work profile. Bug: 174964885 Test: atest com.android.settings.deviceinfo atest com.android.settings.deviceinfo.storage make RunSettingsRoboTests -j ROBOTEST_FILTER=com.android.settings.deviceinfo make RunSettingsRoboTests -j ROBOTEST_FILTER=com.android.settings.deviceinfo.storage Change-Id: I50dea2fbcae39a1488e648f3ca615f54840e19d5
43 lines
1.9 KiB
XML
43 lines
1.9 KiB
XML
<!--
|
|
Copyright (C) 2021 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:key="storage_header"
|
|
android:title="@string/storage_settings">
|
|
<com.android.settingslib.widget.SettingsSpinnerPreference
|
|
android:key="storage_spinner"
|
|
android:order="1"
|
|
settings:searchable="false"
|
|
settings:controller="com.android.settings.deviceinfo.storage.StorageSelectionPreferenceController"/>
|
|
<com.android.settingslib.widget.UsageProgressBarPreference
|
|
android:key="storage_summary"
|
|
android:order="2"
|
|
android:selectable="false"
|
|
settings:searchable="false"
|
|
settings:controller="com.android.settings.deviceinfo.storage.StorageUsageProgressBarPreferenceController"
|
|
settings:allowDividerBelow="true"/>
|
|
<com.android.settings.widget.PrimarySwitchPreference
|
|
android:fragment="com.android.settings.deletionhelper.AutomaticStorageManagerSettings"
|
|
android:key="toggle_asm"
|
|
android:title="@string/automatic_storage_manager_preference_title"
|
|
android:icon="@drawable/ic_storage"
|
|
android:order="3"
|
|
settings:allowDividerAbove="true"
|
|
settings:controller="com.android.settings.deviceinfo.storage.AutomaticStorageManagementSwitchPreferenceController"/>
|
|
</PreferenceScreen>
|