OLD | NEW |
(Empty) | |
| 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 <!-- Copyright 2016 The Chromium Authors. All rights reserved. |
| 3 Use of this source code is governed by a BSD-style license that can be |
| 4 found in the LICENSE file. --> |
| 5 |
| 6 <ScrollView |
| 7 xmlns:android="http://schemas.android.com/apk/res/android" |
| 8 android:id="@+id/main_scroll_view" |
| 9 android:layout_width="match_parent" |
| 10 android:layout_height="match_parent"> |
| 11 |
| 12 <LinearLayout |
| 13 android:id="@+id/main_view" |
| 14 android:layout_width="match_parent" |
| 15 android:layout_height="match_parent" |
| 16 android:layout_marginStart="16dp" |
| 17 android:layout_marginEnd="16dp" |
| 18 android:orientation="vertical" |
| 19 android:paddingStart="6dp" |
| 20 android:paddingEnd="6dp" |
| 21 android:paddingTop="5dp" |
| 22 android:paddingBottom="5dp"> |
| 23 |
| 24 <!-- ======== 'Unimportant Storage' Info ======== --> |
| 25 <TextView |
| 26 android:id="@+id/unimportant_site_data_description" |
| 27 android:text="@string/storage_management_unimportant_site_data_descr
iption" |
| 28 style="@style/ManageSpaceActivityExplanationTextView" /> |
| 29 |
| 30 <LinearLayout |
| 31 android:layout_width="match_parent" |
| 32 android:layout_height="wrap_content" |
| 33 android:baselineAligned="true" |
| 34 android:orientation="horizontal"> |
| 35 |
| 36 <TextView |
| 37 android:id="@+id/unimportant_site_data_size_prefix" |
| 38 android:text="@string/storage_management_unimportant_site_data_s
ize_label" |
| 39 android:layout_weight="1" |
| 40 style="@style/ManageSpaceActivitySizeTextView" /> |
| 41 |
| 42 <TextView |
| 43 android:id="@+id/unimportant_site_data_storage_size_text" |
| 44 style="@style/ManageSpaceActivitySizeTextView" /> |
| 45 </LinearLayout> |
| 46 |
| 47 <Button |
| 48 android:id="@+id/clear_unimportant_site_data_storage" |
| 49 android:text="@string/storage_management_clear_unimportant_site_data
_button" |
| 50 style="@style/ManageSpaceActivityButton" /> |
| 51 |
| 52 |
| 53 <!-- ======== Site Storage Info ======== --> |
| 54 <TextView |
| 55 android:id="@+id/site_data_description" |
| 56 android:text="@string/storage_management_site_data_description" |
| 57 style="@style/ManageSpaceActivityExplanationTextView" /> |
| 58 |
| 59 <LinearLayout |
| 60 android:layout_width="match_parent" |
| 61 android:layout_height="wrap_content" |
| 62 android:baselineAligned="true" |
| 63 android:orientation="horizontal"> |
| 64 |
| 65 <TextView |
| 66 android:id="@+id/site_data_size_prefix" |
| 67 android:text="@string/storage_management_site_data_size_label" |
| 68 android:layout_weight="1" |
| 69 style="@style/ManageSpaceActivitySizeTextView" /> |
| 70 |
| 71 <TextView |
| 72 android:id="@+id/site_data_storage_size_text" |
| 73 style="@style/ManageSpaceActivitySizeTextView" /> |
| 74 </LinearLayout> |
| 75 |
| 76 <Button |
| 77 android:id="@+id/manage_site_data_storage" |
| 78 android:text="@string/storage_management_manage_site_data_button" |
| 79 style="@style/ManageSpaceActivityButton" /> |
| 80 |
| 81 <!-- ======== Global storage info ======== --> |
| 82 |
| 83 <TextView |
| 84 android:id="@+id/all_storage_description" |
| 85 android:text="@string/storage_management_all_storage_description" |
| 86 android:paddingTop="12dp" |
| 87 style="@style/ManageSpaceActivityExplanationTextView" /> |
| 88 |
| 89 <Button |
| 90 android:id="@+id/clear_all_data" |
| 91 android:text="@string/storage_management_clear_all_data_button" |
| 92 style="@style/ManageSpaceActivityButton" /> |
| 93 </LinearLayout> |
| 94 </ScrollView> |
OLD | NEW |