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 <merge xmlns:android="http://schemas.android.com/apk/res/android"> | 6 <merge xmlns:android="http://schemas.android.com/apk/res/android"> |
7 <LinearLayout | 7 <LinearLayout |
8 android:layout_width="match_parent" | 8 android:layout_width="match_parent" |
9 android:layout_height="match_parent" | 9 android:layout_height="match_parent" |
10 android:orientation="vertical"> | 10 android:orientation="vertical"> |
11 | 11 |
12 <org.chromium.chrome.browser.compositor.CompositorViewHolder | 12 <org.chromium.chrome.browser.compositor.CompositorViewHolder |
13 android:id="@+id/compositor_view_holder" | 13 android:id="@+id/compositor_view_holder" |
14 android:layout_width="match_parent" | 14 android:layout_width="match_parent" |
15 android:layout_height="0dp" | 15 android:layout_height="0dp" |
16 android:layout_weight="1" /> | 16 android:layout_weight="1" /> |
17 | 17 |
18 <HorizontalScrollView | 18 <HorizontalScrollView |
19 android:id="@+id/keyboard_accessory" | 19 android:id="@+id/keyboard_accessory" |
20 android:layout_height="@dimen/keyboard_accessory_height" | 20 android:layout_height="@dimen/keyboard_accessory_height" |
21 android:layout_width="match_parent" | 21 android:layout_width="match_parent" |
22 android:background="#FFF" | 22 android:background="#FFF" |
| 23 android:fillViewport="true" |
23 android:scrollbars="none" | 24 android:scrollbars="none" |
24 android:visibility="gone" /> | 25 android:visibility="gone" /> |
25 </LinearLayout> | 26 </LinearLayout> |
26 | 27 |
27 <ViewStub | 28 <ViewStub |
28 android:id="@+id/omnibox_results_container_stub" | 29 android:id="@+id/omnibox_results_container_stub" |
29 android:layout_width="match_parent" | 30 android:layout_width="match_parent" |
30 android:layout_height="match_parent" | 31 android:layout_height="match_parent" |
31 android:layout_marginTop="@dimen/tab_strip_height" | 32 android:layout_marginTop="@dimen/tab_strip_height" |
32 android:inflatedId="@+id/omnibox_results_container" | 33 android:inflatedId="@+id/omnibox_results_container" |
(...skipping 18 matching lines...) Expand all Loading... |
51 android:layout_height="match_parent" | 52 android:layout_height="match_parent" |
52 /> | 53 /> |
53 <!-- This empty view is used as the anchor for custom menu --> | 54 <!-- This empty view is used as the anchor for custom menu --> |
54 <View | 55 <View |
55 android:id="@+id/menu_anchor_stub" | 56 android:id="@+id/menu_anchor_stub" |
56 android:layout_width="0px" | 57 android:layout_width="0px" |
57 android:layout_height="0px" | 58 android:layout_height="0px" |
58 android:layout_gravity="bottom|start" | 59 android:layout_gravity="bottom|start" |
59 /> | 60 /> |
60 </merge> | 61 </merge> |
OLD | NEW |