Chromium Code Reviews| 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" > | |
|
Theresa
2016/05/26 23:21:56
nit: remove the space before the > for consistency
dmurph
2016/05/27 02:09:12
Done.
| |
| 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: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_descriptive_text" | |
| 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 <LinearLayout | |
| 83 android:id="@+id/clear_all_data_section" | |
| 84 android:orientation="vertical" | |
| 85 android:layout_width="match_parent" | |
| 86 android:layout_height="wrap_content" | |
|
Theresa
2016/05/26 23:21:56
nit: trailing white space on this line
dmurph
2016/05/27 02:09:12
Done.
| |
| 87 android:paddingTop="12dp"> | |
| 88 | |
| 89 <TextView | |
| 90 android:id="@+id/all_storage_description" | |
| 91 android:text="@string/storage_management_all_storage_descriptive _text" | |
| 92 style="@style/ManageSpaceActivityExplanationTextView" /> | |
| 93 | |
| 94 <Button | |
| 95 android:id="@+id/clear_all_data" | |
| 96 android:text="@string/storage_management_clear_all_data_button" | |
| 97 style="@style/ManageSpaceActivityButton" /> | |
| 98 </LinearLayout> | |
| 99 </LinearLayout> | |
| 100 </ScrollView> | |
| OLD | NEW |