| 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 <!-- A most visited item, for display on the new tab page. --> | 6 <!-- A most visited item, for display on the new tab page. --> |
| 7 <org.chromium.chrome.browser.ntp.MostVisitedItemView | 7 <org.chromium.chrome.browser.ntp.MostVisitedItemView |
| 8 xmlns:android="http://schemas.android.com/apk/res/android" | 8 xmlns:android="http://schemas.android.com/apk/res/android" |
| 9 xmlns:chrome="http://schemas.android.com/apk/res-auto" |
| 9 android:layout_width="@dimen/most_visited_tile_width" | 10 android:layout_width="@dimen/most_visited_tile_width" |
| 10 android:layout_height="wrap_content" | 11 android:layout_height="wrap_content" |
| 11 android:paddingStart="4dp" | 12 android:paddingStart="4dp" |
| 12 android:paddingEnd="4dp" > | 13 android:paddingEnd="4dp" > |
| 13 | 14 |
| 14 <ImageView | 15 <ImageView |
| 15 android:id="@+id/most_visited_icon" | 16 android:id="@+id/most_visited_icon" |
| 16 android:layout_width="@dimen/most_visited_icon_size" | 17 android:layout_width="@dimen/most_visited_icon_size" |
| 17 android:layout_height="@dimen/most_visited_icon_size" | 18 android:layout_height="@dimen/most_visited_icon_size" |
| 18 android:layout_marginStart="12dp" | 19 android:layout_marginStart="12dp" |
| 19 android:layout_marginEnd="12dp" | 20 android:layout_marginEnd="12dp" |
| 20 android:layout_marginTop="12dp" | 21 android:layout_marginTop="12dp" |
| 21 android:contentDescription="@null" /> | 22 android:contentDescription="@null" /> |
| 22 | 23 |
| 23 <ImageView | 24 <org.chromium.chrome.browser.widget.TintedImageView |
| 24 android:id="@+id/offline_badge" | 25 android:id="@+id/offline_badge" |
| 25 android:layout_width="@dimen/most_visited_offline_badge_size" | 26 android:layout_width="@dimen/most_visited_offline_badge_size" |
| 26 android:layout_height="@dimen/most_visited_offline_badge_size" | 27 android:layout_height="@dimen/most_visited_offline_badge_size" |
| 27 android:layout_marginStart="48dp" | 28 android:layout_marginStart="48dp" |
| 28 android:visibility="gone" | 29 android:visibility="gone" |
| 29 android:background="@drawable/offline_badge_background" | 30 android:background="@drawable/offline_badge_background" |
| 30 android:contentDescription="@null" | 31 android:contentDescription="@null" |
| 31 android:src="@drawable/offline_pin" /> | 32 chrome:tint="#4285f4" |
| 33 android:src="@drawable/offline_bolt" /> |
| 32 | 34 |
| 33 <View | 35 <View |
| 34 android:layout_width="@dimen/most_visited_icon_size" | 36 android:layout_width="@dimen/most_visited_icon_size" |
| 35 android:layout_height="@dimen/most_visited_icon_size" | 37 android:layout_height="@dimen/most_visited_icon_size" |
| 36 android:layout_marginStart="12dp" | 38 android:layout_marginStart="12dp" |
| 37 android:layout_marginEnd="12dp" | 39 android:layout_marginEnd="12dp" |
| 38 android:layout_marginTop="12dp" | 40 android:layout_marginTop="12dp" |
| 39 android:background="@drawable/most_visited_item_highlight" /> | 41 android:background="@drawable/most_visited_item_highlight" /> |
| 40 | 42 |
| 41 <TextView | 43 <TextView |
| 42 android:id="@+id/most_visited_title" | 44 android:id="@+id/most_visited_title" |
| 43 android:layout_width="72dp" | 45 android:layout_width="72dp" |
| 44 android:layout_height="wrap_content" | 46 android:layout_height="wrap_content" |
| 45 android:layout_marginTop="66dp" | 47 android:layout_marginTop="66dp" |
| 46 android:ellipsize="end" | 48 android:ellipsize="end" |
| 47 android:gravity="center_horizontal" | 49 android:gravity="center_horizontal" |
| 48 android:lines="2" | 50 android:lines="2" |
| 49 android:lineSpacingMultiplier="1.17" | 51 android:lineSpacingMultiplier="1.17" |
| 50 android:textColor="#787878" | 52 android:textColor="#787878" |
| 51 android:textSize="12sp" /> | 53 android:textSize="12sp" /> |
| 52 | 54 |
| 53 </org.chromium.chrome.browser.ntp.MostVisitedItemView> | 55 </org.chromium.chrome.browser.ntp.MostVisitedItemView> |
| OLD | NEW |