OLD | NEW |
---|---|
1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
2 <!-- Copyright 2016 The Chromium Authors. All rights reserved. | 2 <!-- Copyright 2016 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 |
Theresa
2017/01/27 00:57:35
From UX review, "The text block is supposed to be
Theresa
2017/01/27 23:34:45
Done.
| |
6 <org.chromium.chrome.browser.history.HistoryItemView | 6 <org.chromium.chrome.browser.history.HistoryItemView |
7 xmlns:android="http://schemas.android.com/apk/res/android" | 7 xmlns:android="http://schemas.android.com/apk/res/android" |
8 xmlns:chrome="http://schemas.android.com/apk/res-auto" | 8 xmlns:chrome="http://schemas.android.com/apk/res-auto" |
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 | 11 |
12 <LinearLayout | 12 <LinearLayout |
13 android:id="@+id/content" | 13 android:id="@+id/content" |
14 android:layout_width="match_parent" | 14 android:layout_width="match_parent" |
15 android:layout_height="wrap_content" | 15 android:layout_height="wrap_content" |
16 android:paddingTop="16dp" | 16 android:paddingTop="16dp" |
17 android:paddingBottom="16dp" | 17 android:paddingBottom="16dp" |
18 android:orientation="horizontal" | 18 android:orientation="horizontal" |
19 android:background="@android:color/white" > | 19 android:paddingEnd="16dp" > |
Theresa
2017/01/27 23:34:45
This moved back to the trash can to make its touch
| |
20 | 20 |
21 <ImageView | 21 <ImageView |
22 android:id="@+id/icon_view" | 22 android:id="@+id/icon_view" |
23 style="@style/HistoryStartIcon" | 23 style="@style/HistoryStartIcon" |
24 android:contentDescription="@null" | 24 android:contentDescription="@null" |
25 android:src="@drawable/default_favicon" /> | 25 android:src="@drawable/default_favicon" /> |
26 | 26 |
27 <LinearLayout | 27 <LinearLayout |
28 android:layout_width="0dp" | 28 android:layout_width="0dp" |
29 android:layout_height="wrap_content" | 29 android:layout_height="wrap_content" |
(...skipping 21 matching lines...) Expand all Loading... | |
51 | 51 |
52 <org.chromium.chrome.browser.widget.TintedImageButton | 52 <org.chromium.chrome.browser.widget.TintedImageButton |
53 android:id="@+id/remove" | 53 android:id="@+id/remove" |
54 style="@style/HistoryEndIcon" | 54 style="@style/HistoryEndIcon" |
55 android:contentDescription="@string/remove" | 55 android:contentDescription="@string/remove" |
56 android:src="@drawable/btn_trash" | 56 android:src="@drawable/btn_trash" |
57 chrome:tint="@color/dark_mode_tint" /> | 57 chrome:tint="@color/dark_mode_tint" /> |
58 </LinearLayout> | 58 </LinearLayout> |
59 | 59 |
60 </org.chromium.chrome.browser.history.HistoryItemView> | 60 </org.chromium.chrome.browser.history.HistoryItemView> |
OLD | NEW |