Jason Monk | 2583fc1 | 2015-03-25 09:46:30 -0400 | [diff] [blame] | 1 | <?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" |
| 31 | android:layout_marginTop="20dp" |
| 32 | android:layout_marginBottom="10dp" |
| 33 | android:textAppearance="@android:style/TextAppearance.Material.Subhead" |
| 34 | /> |
| 35 | |
| 36 | <com.android.settings.applications.LinearColorBar |
| 37 | android:id="@+id/color_bar" |
| 38 | android:layout_width="match_parent" |
| 39 | android:layout_height="30dp" |
| 40 | /> |
| 41 | |
| 42 | <TextView |
| 43 | android:id="@+id/memory_used" |
| 44 | android:layout_width="match_parent" |
| 45 | android:layout_height="wrap_content" |
| 46 | android:layout_marginTop="2dp" |
| 47 | android:layout_marginBottom="10dp" |
| 48 | android:textAppearance="@android:style/TextAppearance.Material.Small" |
| 49 | android:textColor="?android:attr/textColorSecondary" |
| 50 | /> |
| 51 | |
| 52 | <include layout="@layout/memory_key" /> |
| 53 | |
| 54 | </LinearLayout> |
| 55 | |