| <?xml version="1.0" encoding="utf-8"?> |
| <!-- Copyright 2017 The Chromium Authors. All rights reserved. |
| Use of this source code is governed by a BSD-style license that can be |
| found in the LICENSE file. --> |
| |
| <androidx.coordinatorlayout.widget.CoordinatorLayout |
| xmlns:android="http://schemas.android.com/apk/res/android" |
| xmlns:app="http://schemas.android.com/apk/res-auto" |
| android:id="@+id/control_container" |
| android:layout_width="match_parent" |
| android:layout_height="match_parent" > |
| |
| <ViewStub |
| android:id="@+id/omnibox_results_container_stub" |
| android:layout_width="match_parent" |
| android:layout_height="wrap_content" |
| app:layout_anchor="@id/toolbar" |
| android:background="@android:color/white" |
| android:layout="@layout/omnibox_results_container" /> |
| |
| <FrameLayout |
| android:id="@+id/toolbar" |
| android:layout_width="match_parent" |
| android:layout_height="@dimen/toolbar_height_no_shadow" |
| android:background="@color/toolbar_background_primary" |
| android:paddingStart="@dimen/toolbar_edge_padding" |
| android:paddingEnd="@dimen/toolbar_edge_padding" |
| android:clickable="true" > |
| |
| <org.chromium.chrome.browser.searchwidget.SearchActivityLocationBarLayout |
| android:id="@+id/search_location_bar" |
| android:layout_width="match_parent" |
| android:layout_height="wrap_content" |
| android:layout_gravity="center_vertical" |
| android:layout_marginTop="@dimen/location_bar_vertical_margin" |
| android:layout_marginBottom="@dimen/location_bar_vertical_margin" |
| android:paddingStart="@dimen/location_bar_lateral_padding" |
| android:paddingEnd="@dimen/location_bar_lateral_padding" /> |
| |
| </FrameLayout> |
| |
| <FrameLayout |
| android:id="@+id/bottom_container" |
| android:layout_width="match_parent" |
| android:layout_height="match_parent" /> |
| |
| </androidx.coordinatorlayout.widget.CoordinatorLayout> |