| OLD | NEW |
| 1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 <!-- Copyright 2014 The Chromium Authors. All rights reserved. | 2 <!-- Copyright 2014 The Chromium Authors. All rights reserved. |
| 3 | 3 |
| 4 Use of this source code is governed by a BSD-style license that can be | 4 Use of this source code is governed by a BSD-style license that can be |
| 5 found in the LICENSE file. | 5 found in the LICENSE file. |
| 6 --> | 6 --> |
| 7 | 7 |
| 8 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" | 8 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" |
| 9 android:layout_width="wrap_content" | 9 android:layout_width="wrap_content" |
| 10 android:layout_height="wrap_content"> | 10 android:layout_height="wrap_content"> |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 android:contentDescription="@null" /> | 26 android:contentDescription="@null" /> |
| 27 | 27 |
| 28 <TextView android:id="@+id/password_generation_title" | 28 <TextView android:id="@+id/password_generation_title" |
| 29 android:layout_toEndOf="@id/password_generation_icon" | 29 android:layout_toEndOf="@id/password_generation_icon" |
| 30 android:layout_width="wrap_content" | 30 android:layout_width="wrap_content" |
| 31 android:layout_height="wrap_content" | 31 android:layout_height="wrap_content" |
| 32 android:paddingTop="@dimen/password_generation_text_vertical_margin" | 32 android:paddingTop="@dimen/password_generation_text_vertical_margin" |
| 33 android:paddingEnd="@dimen/password_generation_horizontal_margin" | 33 android:paddingEnd="@dimen/password_generation_horizontal_margin" |
| 34 android:singleLine="true" | 34 android:singleLine="true" |
| 35 android:textStyle="bold" | 35 android:textStyle="bold" |
| 36 android:textColor="@color/default_text_color" | |
| 37 android:textSize="@dimen/password_generation_text_size" | 36 android:textSize="@dimen/password_generation_text_size" |
| 38 android:includeFontPadding="false"/> | 37 android:includeFontPadding="false"/> |
| 39 | 38 |
| 40 <TextView android:id="@+id/password_generation_password" | 39 <TextView android:id="@+id/password_generation_password" |
| 41 android:layout_toEndOf="@id/password_generation_icon" | 40 android:layout_toEndOf="@id/password_generation_icon" |
| 42 android:layout_below="@id/password_generation_title" | 41 android:layout_below="@id/password_generation_title" |
| 43 android:layout_width="wrap_content" | 42 android:layout_width="wrap_content" |
| 44 android:layout_height="wrap_content" | 43 android:layout_height="wrap_content" |
| 45 android:paddingBottom="@dimen/password_generation_text_vertical_marg
in" | 44 android:paddingBottom="@dimen/password_generation_text_vertical_marg
in" |
| 46 android:paddingEnd="@dimen/password_generation_horizontal_margin" | 45 android:paddingEnd="@dimen/password_generation_horizontal_margin" |
| 47 android:singleLine="true" | 46 android:singleLine="true" |
| 48 android:textColor="@color/default_text_color" | |
| 49 android:textSize="@dimen/password_generation_text_size" | 47 android:textSize="@dimen/password_generation_text_size" |
| 50 android:includeFontPadding="false"/> | 48 android:includeFontPadding="false"/> |
| 51 | 49 |
| 52 </RelativeLayout> | 50 </RelativeLayout> |
| 53 | 51 |
| 54 <View android:id="@+id/password_generation_divider" | 52 <View android:id="@+id/password_generation_divider" |
| 55 android:layout_below="@id/password_generation_suggestion" | 53 android:layout_below="@id/password_generation_suggestion" |
| 56 android:layout_width="wrap_content" | 54 android:layout_width="wrap_content" |
| 57 android:layout_height="@dimen/password_generation_divider_height" | 55 android:layout_height="@dimen/password_generation_divider_height" |
| 58 android:background="@color/password_generation_divider_color"/> | 56 android:background="@color/password_generation_divider_color"/> |
| 59 | 57 |
| 60 </RelativeLayout> | 58 </RelativeLayout> |
| OLD | NEW |