| 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 | 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 <LinearLayout | 7 <LinearLayout |
| 8 xmlns:android="http://schemas.android.com/apk/res/android" | 8 xmlns:android="http://schemas.android.com/apk/res/android" |
| 9 android:layout_width="match_parent" | 9 android:layout_width="match_parent" |
| 10 android:layout_height="wrap_content" | 10 android:layout_height="wrap_content" |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 android:layout_marginEnd="16dp" | 21 android:layout_marginEnd="16dp" |
| 22 android:contentDescription="@null"/> | 22 android:contentDescription="@null"/> |
| 23 | 23 |
| 24 <TextView | 24 <TextView |
| 25 android:id="@+id/account_name" | 25 android:id="@+id/account_name" |
| 26 android:layout_width="0dp" | 26 android:layout_width="0dp" |
| 27 android:layout_height="wrap_content" | 27 android:layout_height="wrap_content" |
| 28 android:layout_weight="1" | 28 android:layout_weight="1" |
| 29 android:minHeight="56dp" | 29 android:minHeight="56dp" |
| 30 android:gravity="center_vertical" | 30 android:gravity="center_vertical" |
| 31 android:textColor="@color/default_text_color" | |
| 32 android:textSize="@dimen/fre_normal_text_size"/> | 31 android:textSize="@dimen/fre_normal_text_size"/> |
| 33 | 32 |
| 34 <ImageView | 33 <ImageView |
| 35 android:id="@+id/account_selection_mark" | 34 android:id="@+id/account_selection_mark" |
| 36 android:layout_width="24dp" | 35 android:layout_width="24dp" |
| 37 android:layout_height="24dp" | 36 android:layout_height="24dp" |
| 38 android:layout_marginStart="16dp" | 37 android:layout_marginStart="16dp" |
| 39 android:src="@drawable/ic_check_googblue_24dp" | 38 android:src="@drawable/ic_check_googblue_24dp" |
| 40 android:contentDescription="@null" | 39 android:contentDescription="@null" |
| 41 android:visibility="gone"/> | 40 android:visibility="gone"/> |
| 42 </LinearLayout> | 41 </LinearLayout> |
| OLD | NEW |