OLD | NEW |
1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
2 <!-- | 2 <!-- |
3 Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 4 Use of this source code is governed by a BSD-style license that can be |
5 found in the LICENSE file. | 5 found in the LICENSE file. |
6 --> | 6 --> |
7 | 7 |
8 <merge xmlns:android="http://schemas.android.com/apk/res/android" | 8 <merge xmlns:android="http://schemas.android.com/apk/res/android" |
9 xmlns:chrome="http://schemas.android.com/apk/res-auto" > | 9 xmlns:chrome="http://schemas.android.com/apk/res-auto" > |
10 | 10 |
(...skipping 13 matching lines...) Expand all Loading... |
24 | 24 |
25 <TextView | 25 <TextView |
26 android:id="@+id/title" | 26 android:id="@+id/title" |
27 android:layout_width="0dp" | 27 android:layout_width="0dp" |
28 android:layout_height="wrap_content" | 28 android:layout_height="wrap_content" |
29 android:layout_weight="1" | 29 android:layout_weight="1" |
30 android:minHeight="48dp" | 30 android:minHeight="48dp" |
31 android:singleLine="true" | 31 android:singleLine="true" |
32 android:gravity="center_vertical" | 32 android:gravity="center_vertical" |
33 android:textAlignment="viewStart" | 33 android:textAlignment="viewStart" |
| 34 android:textColor="@color/default_text_color" |
34 android:textSize="16sp" /> | 35 android:textSize="16sp" /> |
35 | 36 |
36 <org.chromium.chrome.browser.widget.TintedImageButton | 37 <org.chromium.chrome.browser.widget.TintedImageButton |
37 android:id="@+id/more" | 38 android:id="@+id/more" |
38 android:layout_width="wrap_content" | 39 android:layout_width="wrap_content" |
39 android:layout_height="match_parent" | 40 android:layout_height="match_parent" |
40 android:visibility="gone" | 41 android:visibility="gone" |
41 android:background="@null" | 42 android:background="@null" |
42 android:contentDescription="@string/accessibility_bookmark_more_info
" | 43 android:contentDescription="@string/accessibility_bookmark_more_info
" |
43 android:paddingEnd="16dp" | 44 android:paddingEnd="16dp" |
44 android:paddingStart="16dp" | 45 android:paddingStart="16dp" |
45 android:src="@drawable/btn_menu" | 46 android:src="@drawable/btn_menu" |
46 chrome:tint="@color/dark_mode_tint" /> | 47 chrome:tint="@color/dark_mode_tint" /> |
47 </LinearLayout> | 48 </LinearLayout> |
48 | 49 |
49 </merge> | 50 </merge> |
OLD | NEW |