blob: 9d0a22df4930a5acef41e55ef9acb74a0d677cfe [file] [log] [blame]
Jason Monk2583fc12015-03-25 09:46:30 -04001<?xml version="1.0" encoding="utf-8"?>
2<!--
3 Copyright (C) 2015 The Android Open Source Project
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
11 Unless required by applicable law or agreed to in writing, software
12 distributed under the License is distributed on an "AS IS" BASIS,
13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 See the License for the specific language governing permissions and
15 limitations under the License.
16-->
17
18<LinearLayout
19 xmlns:android="http://schemas.android.com/apk/res/android"
20 android:id="@+id/all_details"
21 android:layout_width="match_parent"
22 android:layout_height="wrap_content"
23 android:paddingStart="?android:attr/listPreferredItemPaddingStart"
24 android:paddingEnd="?android:attr/listPreferredItemPaddingEnd"
25 android:orientation="vertical">
26
27 <TextView
28 android:id="@+id/memory_state"
29 android:layout_width="match_parent"
30 android:layout_height="wrap_content"
Jason Monkbeb171d2015-05-21 15:24:37 -040031 android:layout_marginTop="5dp"
32 android:layout_marginBottom="5dp"
33 android:textColor="?android:attr/colorAccent"
34 android:textAppearance="@android:style/TextAppearance.Material.Display1"
Jason Monk2583fc12015-03-25 09:46:30 -040035 />
36
37 <com.android.settings.applications.LinearColorBar
38 android:id="@+id/color_bar"
39 android:layout_width="match_parent"
Jason Monkbeb171d2015-05-21 15:24:37 -040040 android:layout_height="28dp"
41 android:layout_marginBottom="15dp"
Jason Monk2583fc12015-03-25 09:46:30 -040042 />
43
Jason Monk2583fc12015-03-25 09:46:30 -040044</LinearLayout>
45