OLD | NEW |
1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
2 <!-- Copyright 2013 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 --> | |
6 | 5 |
7 <Button xmlns:android="http://schemas.android.com/apk/res/android" | 6 <LinearLayout |
| 7 xmlns:android="http://schemas.android.com/apk/res/android" |
| 8 style="?attr/buttonBarStyle" |
| 9 android:height="36dp" |
| 10 android:layout_width="match_parent" |
| 11 android:layout_height="wrap_content" |
| 12 android:orientation="vertical" > |
| 13 <Button |
8 android:layout_width="wrap_content" | 14 android:layout_width="wrap_content" |
9 android:layout_height="wrap_content" | 15 android:layout_height="wrap_content" |
| 16 android:id="@+id/credential_picker_more" |
10 android:background="?attr/selectableItemBackground" | 17 android:background="?attr/selectableItemBackground" |
11 android:fontFamily="sans-serif-medium" | 18 android:fontFamily="sans-serif-medium" |
12 android:minWidth="88dp" | 19 android:minWidth="88dp" |
13 android:minHeight="36dp" | 20 android:minHeight="36dp" |
14 android:textSize="@dimen/infobar_button_text_size" | 21 android:textSize="@dimen/infobar_button_text_size" |
15 android:paddingStart="@dimen/infobar_button_horizontal_padding" | 22 android:paddingStart="@dimen/infobar_button_horizontal_padding" |
16 android:paddingEnd="@dimen/infobar_button_horizontal_padding" | 23 android:paddingEnd="@dimen/infobar_button_horizontal_padding" |
17 android:paddingTop="5dp" | 24 android:paddingTop="5dp" |
18 android:paddingBottom="5dp" | 25 android:paddingBottom="5dp" |
19 android:textAllCaps="true" /> | 26 android:textAllCaps="true" /> |
| 27 </LinearLayout> |
OLD | NEW |