blob: 2320257e324496135db7a626177650495e236702 [file] [log] [blame]
Daniel Nishi116a55c2016-05-10 17:35:57 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2016 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 xmlns:android="http://schemas.android.com/apk/res/android"
18 xmlns:settings="http://schemas.android.com/apk/res-auto"
19 android:title="@string/automatic_storage_manager_settings" >
20
Daniel Nishiba03d2f2016-05-19 16:35:44 -070021 <PreferenceCategory
22 android:key="automatic"
23 android:title="@string/deletion_helper_automatic_title">
Daniel Nishi116a55c2016-05-10 17:35:57 -070024
Daniel Nishiba03d2f2016-05-19 16:35:44 -070025 <SwitchPreference
26 android:key="storage_manager_active"
27 android:title="@string/automatic_storage_manager_preference_title"
28 android:summary="@string/automatic_storage_manager_text"/>
29
Daniel Nishi1b9afaf2016-06-24 15:53:14 -070030
31 <com.android.settings.fuelgauge.WallOfTextPreference
32 android:key="freed_bytes"
33 android:persistent="false"
34 android:selectable="false"
35 settings:allowDividerAbove="false"
36 settings:allowDividerBelow="true" />
37
Daniel Nishiba03d2f2016-05-19 16:35:44 -070038 <DropDownPreference
39 android:key="days"
40 android:summary="%s"
41 android:title="@string/automatic_storage_manager_days_title"
42 android:entries="@array/automatic_storage_management_days"
Daniel Nishi1b9afaf2016-06-24 15:53:14 -070043 android:entryValues="@array/automatic_storage_management_days_values"
44 settings:allowDividerAbove="true" />
Daniel Nishiba03d2f2016-05-19 16:35:44 -070045
46 </PreferenceCategory>
47
48 <PreferenceCategory
49 android:key="manual"
50 android:title="@string/deletion_helper_manual_title">
51
52 <Preference
53 android:key="deletion_helper"
54 android:title="@string/deletion_helper_preference_title"/>
55
56 </PreferenceCategory>
Daniel Nishi116a55c2016-05-10 17:35:57 -070057
58</PreferenceScreen>