2017-04-26 19:24:33 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-10-09 18:24:02 +00:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-04-26 19:24:33 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
2019-10-04 12:59:08 +00:00
|
|
|
<androidx.appcompat.widget.Toolbar
|
2017-04-26 19:24:33 +00:00
|
|
|
android:id="@+id/toolbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="?attr/actionBarSize"
|
|
|
|
android:background="?attr/colorPrimary"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:minHeight="?attr/actionBarSize"
|
2021-03-26 22:28:28 +00:00
|
|
|
android:theme="@style/ToolbarTheme">
|
2017-04-26 19:24:33 +00:00
|
|
|
|
|
|
|
<include
|
|
|
|
android:id="@+id/toolbar_search_container"
|
|
|
|
layout="@layout/toolbar_search_layout"
|
|
|
|
android:visibility="gone"
|
2020-10-09 18:24:02 +00:00
|
|
|
tools:visibility="visible" />
|
2017-04-26 19:24:33 +00:00
|
|
|
|
2019-10-04 12:59:08 +00:00
|
|
|
</androidx.appcompat.widget.Toolbar>
|
2017-04-26 19:24:33 +00:00
|
|
|
|
2020-10-09 18:24:02 +00:00
|
|
|
</LinearLayout>
|