| OLD | NEW |
| (Empty) |
| 1 <?xml version="1.0" encoding="utf-8"?> | |
| 2 <!-- | |
| 3 Copyright 2015 The Chromium Authors. All rights reserved. | |
| 4 Use of this source code is governed by a BSD-style license that can be | |
| 5 found in the LICENSE file. | |
| 6 --> | |
| 7 | |
| 8 <merge xmlns:android="http://schemas.android.com/apk/res/android" | |
| 9 xmlns:chrome="http://schemas.android.com/apk/res-auto" > | |
| 10 | |
| 11 <LinearLayout | |
| 12 android:id="@+id/bookmark_row" | |
| 13 android:layout_width="match_parent" | |
| 14 android:layout_height="wrap_content" | |
| 15 android:gravity="center_vertical" | |
| 16 android:orientation="horizontal" > | |
| 17 | |
| 18 <ImageView | |
| 19 android:id="@+id/bookmark_image" | |
| 20 android:layout_width="64dp" | |
| 21 android:layout_height="match_parent" | |
| 22 android:contentDescription="@null" | |
| 23 android:scaleType="center" /> | |
| 24 | |
| 25 <LinearLayout | |
| 26 android:layout_width="0dp" | |
| 27 android:layout_height="48dp" | |
| 28 android:layout_weight="1" | |
| 29 android:gravity="center_vertical" | |
| 30 android:orientation="vertical" > | |
| 31 | |
| 32 <TextView | |
| 33 android:id="@+id/title" | |
| 34 android:layout_width="match_parent" | |
| 35 android:layout_height="wrap_content" | |
| 36 android:singleLine="true" | |
| 37 android:textAlignment="viewStart" | |
| 38 android:textColor="@color/default_text_color" | |
| 39 android:textSize="16sp" /> | |
| 40 | |
| 41 <TextView | |
| 42 android:id="@+id/offline_page_size" | |
| 43 android:layout_width="match_parent" | |
| 44 android:layout_height="wrap_content" | |
| 45 android:singleLine="true" | |
| 46 android:textAlignment="viewStart" | |
| 47 android:textColor="@color/secondary_text_default_material_light" | |
| 48 android:textSize="15sp" | |
| 49 android:visibility="gone" /> | |
| 50 | |
| 51 </LinearLayout> | |
| 52 | |
| 53 <org.chromium.chrome.browser.widget.TintedImageButton | |
| 54 android:id="@+id/more" | |
| 55 android:layout_width="wrap_content" | |
| 56 android:layout_height="match_parent" | |
| 57 android:visibility="gone" | |
| 58 android:background="@null" | |
| 59 android:contentDescription="@string/accessibility_enhanced_bookmark_
more_info" | |
| 60 android:paddingEnd="16dp" | |
| 61 android:paddingStart="16dp" | |
| 62 android:src="@drawable/btn_menu" | |
| 63 chrome:tint="@color/dark_mode_tint" /> | |
| 64 </LinearLayout> | |
| 65 | |
| 66 <org.chromium.chrome.browser.bookmarks.BookmarkItemHighlightView | |
| 67 android:id="@+id/highlight" | |
| 68 android:layout_width="match_parent" | |
| 69 android:layout_height="match_parent" /> | |
| 70 | |
| 71 </merge> | |
| OLD | NEW |