| 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 <RelativeLayout | 6 <RelativeLayout |
| 7 xmlns:android="http://schemas.android.com/apk/res/android" | 7 xmlns:android="http://schemas.android.com/apk/res/android" |
| 8 android:id="@+id/snippets_card_view" | 8 android:id="@+id/snippets_card_view" |
| 9 android:layout_width="match_parent" | 9 android:layout_width="match_parent" |
| 10 android:layout_height="wrap_content" | 10 android:layout_height="wrap_content" |
| 11 android:padding="16dp" | 11 android:padding="@dimen/snippets_padding_and_peeking_card_height" |
| 12 android:background="@color/snippets_background_color"> | 12 android:background="@color/snippets_background_color"> |
| 13 | 13 |
| 14 <TextView | 14 <TextView |
| 15 android:id="@+id/article_headline" | 15 android:id="@+id/article_headline" |
| 16 android:layout_width="match_parent" | 16 android:layout_width="match_parent" |
| 17 android:layout_height="wrap_content" | 17 android:layout_height="wrap_content" |
| 18 android:layout_alignParentStart="true" | 18 android:layout_alignParentStart="true" |
| 19 android:layout_toStartOf="@+id/article_thumbnail" | 19 android:layout_toStartOf="@+id/article_thumbnail" |
| 20 android:maxLines="2" | 20 android:maxLines="2" |
| 21 android:ellipsize="end" | 21 android:ellipsize="end" |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 android:background="@color/snippets_thumnail_placeholder_bg" | 53 android:background="@color/snippets_thumnail_placeholder_bg" |
| 54 android:layout_width="@dimen/snippets_thumbnail_size" | 54 android:layout_width="@dimen/snippets_thumbnail_size" |
| 55 android:layout_height="@dimen/snippets_thumbnail_size" | 55 android:layout_height="@dimen/snippets_thumbnail_size" |
| 56 android:layout_alignParentTop="true" | 56 android:layout_alignParentTop="true" |
| 57 android:layout_alignParentEnd="true" | 57 android:layout_alignParentEnd="true" |
| 58 android:layout_marginStart="16dp" | 58 android:layout_marginStart="16dp" |
| 59 android:scaleType="centerCrop" | 59 android:scaleType="centerCrop" |
| 60 android:contentDescription="@null" | 60 android:contentDescription="@null" |
| 61 android:src="@null" /> | 61 android:src="@null" /> |
| 62 </RelativeLayout> | 62 </RelativeLayout> |
| OLD | NEW |