OLD | NEW |
1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
2 <!-- Copyright 2015 The Chromium Authors. All rights reserved. | 2 <!-- Copyright 2015 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 <LinearLayout | 6 <LinearLayout |
7 xmlns:android="http://schemas.android.com/apk/res/android" | 7 xmlns:android="http://schemas.android.com/apk/res/android" |
8 android:layout_width="match_parent" | 8 android:layout_width="match_parent" |
9 android:layout_height="wrap_content" | 9 android:layout_height="wrap_content" |
10 android:minHeight="64dp" | 10 android:minHeight="64dp" |
(...skipping 25 matching lines...) Expand all Loading... |
36 <TextView | 36 <TextView |
37 android:id="@+id/secondary_name" | 37 android:id="@+id/secondary_name" |
38 android:layout_width="wrap_content" | 38 android:layout_width="wrap_content" |
39 android:layout_height="wrap_content" | 39 android:layout_height="wrap_content" |
40 android:ellipsize="end" | 40 android:ellipsize="end" |
41 android:singleLine="true" | 41 android:singleLine="true" |
42 android:fontFamily="sans-serif" | 42 android:fontFamily="sans-serif" |
43 android:textColor="@color/descriptive_text_color" | 43 android:textColor="@color/descriptive_text_color" |
44 android:textSize="@dimen/account_chooser_dialog_title_descriptive_te
xt_size"/> | 44 android:textSize="@dimen/account_chooser_dialog_title_descriptive_te
xt_size"/> |
45 </LinearLayout> | 45 </LinearLayout> |
| 46 <!-- Needed to make the following ImageButton align to the right. --> |
| 47 <Space |
| 48 android:layout_width="0dp" |
| 49 android:layout_height="0dp" |
| 50 android:layout_weight="1" /> |
| 51 <ImageButton |
| 52 android:id="@+id/psl_info_btn" |
| 53 android:layout_gravity="center_vertical" |
| 54 android:layout_height="wrap_content" |
| 55 android:layout_width="wrap_content" |
| 56 android:background="?attr/selectableItemBackground" |
| 57 android:contentDescription="@null" |
| 58 android:padding="@dimen/psl_info_btn_padding" |
| 59 android:src="@drawable/btn_info" |
| 60 android:visibility="gone"/> |
46 </LinearLayout> | 61 </LinearLayout> |
OLD | NEW |