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
iptive_text" |
| 28 style="@style/ManageSpaceActivityExplanationTextView" /> |
| 29 |
| 30 <LinearLayout |
| 31 android:layout_width="match_parent" |
| 32 android:layout_height="wrap_content" |
| 33 android:orientation="horizontal" |
| 34 android:baselineAligned="true"> |
| 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 style="@style/ManageSpaceActivitySizeTextView" /> |
| 40 |
| 41 <include layout="@layout/dotted_line_span" /> |
| 42 |
| 43 <TextView |
| 44 android:id="@+id/unimportant_site_data_storage_size_text" |
| 45 style="@style/ManageSpaceActivitySizeTextView" /> |
| 46 </LinearLayout> |
| 47 |
| 48 <Button |
| 49 android:id="@+id/clear_unimportant_site_data_storage" |
| 50 android:text="@string/storage_management_clear_unimportant_site_data
_button" |
| 51 style="@style/ManageSpaceActivityButton" /> |
| 52 |
| 53 |
| 54 <!-- ======== Site Storage Info ======== --> |
| 55 <TextView |
| 56 android:id="@+id/site_data_description" |
| 57 android:text="@string/storage_management_site_data_descriptive_text" |
| 58 style="@style/ManageSpaceActivityExplanationTextView" /> |
| 59 |
| 60 <LinearLayout |
| 61 android:layout_width="match_parent" |
| 62 android:layout_height="wrap_content" |
| 63 android:orientation="horizontal" |
| 64 android:baselineAligned="true"> |
| 65 |
| 66 <TextView |
| 67 android:id="@+id/site_data_size_prefix" |
| 68 android:text="@string/storage_management_site_data_size_label" |
| 69 style="@style/ManageSpaceActivitySizeTextView" /> |
| 70 |
| 71 <include layout="@layout/dotted_line_span" /> |
| 72 |
| 73 <TextView |
| 74 android:id="@+id/site_data_storage_size_text" |
| 75 style="@style/ManageSpaceActivitySizeTextView" /> |
| 76 </LinearLayout> |
| 77 |
| 78 <Button |
| 79 android:id="@+id/manage_site_data_storage" |
| 80 android:text="@string/storage_management_manage_site_data_button" |
| 81 style="@style/ManageSpaceActivityButton" /> |
| 82 |
| 83 <!-- ======== Global storage info ======== --> |
| 84 <LinearLayout |
| 85 android:id="@+id/clear_all_data_section" |
| 86 android:orientation="vertical" |
| 87 android:layout_width="match_parent" |
| 88 android:layout_height="wrap_content" |
| 89 android:paddingTop="12dp"> |
| 90 |
| 91 <TextView |
| 92 android:id="@+id/all_storage_description" |
| 93 android:text="@string/storage_management_all_storage_descriptive
_text" |
| 94 style="@style/ManageSpaceActivityExplanationTextView" /> |
| 95 |
| 96 <Button |
| 97 android:id="@+id/clear_all_data" |
| 98 android:text="@string/storage_management_clear_all_data_button" |
| 99 style="@style/ManageSpaceActivityButton" /> |
| 100 </LinearLayout> |
| 101 </LinearLayout> |
| 102 </ScrollView> |
OLD | NEW |