| OLD | NEW |
| 1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 <!-- Copyright 2016 The Chromium Authors. All rights reserved. | 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 | 3 Use of this source code is governed by a BSD-style license that can be |
| 4 found in the LICENSE file. --> | 4 found in the LICENSE file. --> |
| 5 | 5 |
| 6 <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" | 6 <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" |
| 7 android:layout_width="match_parent" | 7 android:layout_width="match_parent" |
| 8 android:layout_height="match_parent" | 8 android:layout_height="match_parent" |
| 9 android:fillViewport="true" > | 9 android:fillViewport="true" > |
| 10 | 10 |
| 11 <LinearLayout | 11 <LinearLayout |
| 12 android:id="@+id/password_entry_editor_interactive" | 12 android:id="@+id/password_entry_editor_interactive" |
| 13 android:layout_width="match_parent" | 13 android:layout_width="match_parent" |
| 14 android:layout_height="wrap_content" | 14 android:layout_height="wrap_content" |
| 15 android:orientation="vertical" | 15 android:orientation="vertical" |
| 16 android:title="@string/password_entry_editor_title" | 16 android:title="@string/password_entry_editor_title"> |
| 17 android:visibility="gone"> | |
| 18 | 17 |
| 19 <TextView | 18 <TextView |
| 20 android:text="@string/password_entry_editor_site_title" | 19 android:text="@string/password_entry_editor_site_title" |
| 21 android:textColor="@color/google_blue_700" | 20 android:textColor="@color/google_blue_700" |
| 22 android:layout_width="wrap_content" | 21 android:layout_width="wrap_content" |
| 23 android:layout_height="wrap_content" | 22 android:layout_height="wrap_content" |
| 24 android:layout_marginTop="10dp" | 23 android:layout_marginTop="10dp" |
| 25 android:layout_marginStart="15dp" | 24 android:layout_marginStart="15dp" |
| 26 android:gravity="center_vertical" | 25 android:gravity="center_vertical" |
| 27 android:textAppearance="?android:attr/textAppearanceMedium" /> | 26 android:textAppearance="?android:attr/textAppearanceMedium" /> |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 android:layout_marginTop="10dp" | 144 android:layout_marginTop="10dp" |
| 146 android:layout_marginEnd="15dp" | 145 android:layout_marginEnd="15dp" |
| 147 android:src="@drawable/ic_content_copy" | 146 android:src="@drawable/ic_content_copy" |
| 148 android:contentDescription="@string/password_entry_editor_copy_s
tored_password" /> | 147 android:contentDescription="@string/password_entry_editor_copy_s
tored_password" /> |
| 149 | 148 |
| 150 </LinearLayout> | 149 </LinearLayout> |
| 151 | 150 |
| 152 </LinearLayout> | 151 </LinearLayout> |
| 153 | 152 |
| 154 </ScrollView> | 153 </ScrollView> |
| OLD | NEW |