1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2015 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    android:title="@string/app_memory_use"
20    android:key="app_list">
21
22    <PreferenceCategory
23        android:title="@string/average_memory_use"
24        android:layout="@layout/preference_category_short" />
25
26    <com.android.settings.SummaryPreference
27        android:key="status_header"
28        android:selectable="false" />
29
30    <com.android.settings.applications.SpacePreference
31        android:layout_height="5dp" />
32
33    <Preference
34        android:key="performance"
35        android:selectable="false"
36        android:layout="@layout/horizontal_preference"
37        android:title="@string/memory_performance" />
38
39    <Preference
40        android:key="total_memory"
41        android:selectable="false"
42        android:layout="@layout/horizontal_preference"
43        android:title="@string/total_memory" />
44
45    <Preference
46        android:key="average_used"
47        android:selectable="false"
48        android:layout="@layout/horizontal_preference"
49        android:title="@string/average_used" />
50
51    <Preference
52        android:key="free"
53        android:selectable="false"
54        android:layout="@layout/horizontal_preference"
55        android:title="@string/free_memory" />
56
57    <com.android.settings.applications.SpacePreference
58        android:layout_height="15dp" />
59
60    <Preference
61        android:key="apps_list"
62        android:title="@string/memory_usage_apps" />
63
64</PreferenceScreen>
65