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 <!-- The toolbar containing the URL bar, back button, and NTP button. | 6 <!-- The toolbar containing the URL bar, back button, and NTP button. |
7 --> | 7 --> |
8 | 8 |
9 <org.chromium.chrome.browser.toolbar.ToolbarTablet | 9 <org.chromium.chrome.browser.toolbar.ToolbarTablet |
10 xmlns:android="http://schemas.android.com/apk/res/android" | 10 xmlns:android="http://schemas.android.com/apk/res/android" |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 android:contentDescription="@string/accessibility_btn_refresh" /> | 46 android:contentDescription="@string/accessibility_btn_refresh" /> |
47 | 47 |
48 <org.chromium.chrome.browser.omnibox.LocationBarTablet | 48 <org.chromium.chrome.browser.omnibox.LocationBarTablet |
49 android:id="@+id/location_bar" | 49 android:id="@+id/location_bar" |
50 android:layout_width="0dp" | 50 android:layout_width="0dp" |
51 android:layout_height="match_parent" | 51 android:layout_height="match_parent" |
52 android:layout_marginBottom="5dp" | 52 android:layout_marginBottom="5dp" |
53 android:layout_marginTop="5dp" | 53 android:layout_marginTop="5dp" |
54 android:layout_weight="1" | 54 android:layout_weight="1" |
55 android:layout_gravity="top|center" | 55 android:layout_gravity="top|center" |
56 android:background="@drawable/textbox" | 56 android:background="@drawable/card_single" |
57 android:paddingEnd="1dp" | 57 android:paddingEnd="1dp" |
58 android:paddingStart="2dp" /> | 58 android:paddingStart="2dp" /> |
59 | 59 |
60 <ImageButton | 60 <ImageButton |
61 android:id="@+id/tab_switcher_button" | 61 android:id="@+id/tab_switcher_button" |
62 style="@style/ToolbarButton" | 62 style="@style/ToolbarButton" |
63 android:contentDescription="@string/accessibility_toolbar_btn_tabswi
tcher_toggle_default" | 63 android:contentDescription="@string/accessibility_toolbar_btn_tabswi
tcher_toggle_default" |
64 android:visibility="gone" /> | 64 android:visibility="gone" /> |
65 | 65 |
66 <FrameLayout | 66 <FrameLayout |
(...skipping 11 matching lines...) Expand all Loading... |
78 android:id="@+id/menu_badge" | 78 android:id="@+id/menu_badge" |
79 style="@style/ToolbarMenuButtonTablet" | 79 style="@style/ToolbarMenuButtonTablet" |
80 android:src="@drawable/badge_update_dark" | 80 android:src="@drawable/badge_update_dark" |
81 android:contentDescription="@null" | 81 android:contentDescription="@null" |
82 android:importantForAccessibility="no" | 82 android:importantForAccessibility="no" |
83 android:visibility="invisible" /> | 83 android:visibility="invisible" /> |
84 | 84 |
85 </FrameLayout> | 85 </FrameLayout> |
86 </LinearLayout> | 86 </LinearLayout> |
87 </org.chromium.chrome.browser.toolbar.ToolbarTablet> | 87 </org.chromium.chrome.browser.toolbar.ToolbarTablet> |
OLD | NEW |