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 |
6 <org.chromium.chrome.browser.widget.BottomSheet | 6 <org.chromium.chrome.browser.widget.BottomSheet |
7 xmlns:android="http://schemas.android.com/apk/res/android" | 7 xmlns:android="http://schemas.android.com/apk/res/android" |
8 android:id="@+id/bottom_sheet" | 8 android:id="@+id/bottom_sheet" |
9 android:layout_width="match_parent" | 9 android:layout_width="match_parent" |
10 android:layout_height="wrap_content" > | 10 android:layout_height="wrap_content" > |
(...skipping 25 matching lines...) Expand all Loading... |
36 android:id="@+id/find_toolbar_stub" | 36 android:id="@+id/find_toolbar_stub" |
37 android:inflatedId="@+id/find_toolbar" | 37 android:inflatedId="@+id/find_toolbar" |
38 android:layout_marginTop="@dimen/toolbar_shadow_height" | 38 android:layout_marginTop="@dimen/toolbar_shadow_height" |
39 android:layout_width="match_parent" | 39 android:layout_width="match_parent" |
40 android:layout_height="@dimen/toolbar_height_no_shadow" | 40 android:layout_height="@dimen/toolbar_height_no_shadow" |
41 android:layout="@layout/find_toolbar" | 41 android:layout="@layout/find_toolbar" |
42 android:visibility="gone" /> | 42 android:visibility="gone" /> |
43 </view> | 43 </view> |
44 </org.chromium.chrome.browser.toolbar.ToolbarControlContainer> | 44 </org.chromium.chrome.browser.toolbar.ToolbarControlContainer> |
45 | 45 |
46 <View | 46 <FrameLayout |
47 android:id="@+id/bottom_sheet_content" | 47 android:id="@+id/bottom_sheet_content" |
48 android:layout_width="match_parent" | 48 android:layout_width="match_parent" |
49 android:layout_height="match_parent" | 49 android:layout_height="match_parent" /> |
50 android:background="@android:color/white" /> | |
51 | 50 |
52 </org.chromium.chrome.browser.widget.BottomSheet> | 51 </org.chromium.chrome.browser.widget.BottomSheet> |
OLD | NEW |