| 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 xmlns:android="http://schemas.android.com/apk/res/android" | 6 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
| 7 android:id="@+id/snackbar" | 7 android:id="@+id/snackbar" |
| 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:layout_gravity="bottom|start" | 10 android:layout_gravity="bottom|start" |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 android:textColor="@android:color/white" | 34 android:textColor="@android:color/white" |
| 35 android:textSize="14sp" /> | 35 android:textSize="14sp" /> |
| 36 | 36 |
| 37 <Button | 37 <Button |
| 38 android:id="@+id/snackbar_button" | 38 android:id="@+id/snackbar_button" |
| 39 android:layout_width="wrap_content" | 39 android:layout_width="wrap_content" |
| 40 android:layout_height="@dimen/snackbar_min_height" | 40 android:layout_height="@dimen/snackbar_min_height" |
| 41 android:layout_gravity="center_vertical" | 41 android:layout_gravity="center_vertical" |
| 42 android:paddingEnd="24dp" | 42 android:paddingEnd="24dp" |
| 43 android:paddingStart="24dp" | 43 android:paddingStart="24dp" |
| 44 android:fontFamily="sans-serif-medium" | |
| 45 android:textAllCaps="true" | 44 android:textAllCaps="true" |
| 46 android:textColor="@color/snackbar_button_color" | 45 android:textColor="@color/snackbar_button_color" |
| 47 android:textSize="14sp" | 46 android:textSize="14sp" |
| 48 style="@style/ButtonCompatBorderless" /> | 47 style="@style/ButtonCompatBorderless" /> |
| 49 | 48 |
| 50 </LinearLayout> | 49 </LinearLayout> |
| OLD | NEW |