2017-04-26 19:24:33 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:id="@+id/toolbar_container"
|
|
|
|
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"
|
|
|
|
android:theme="@style/ThemeOverlay.AppCompat.ActionBar"
|
2017-09-03 06:04:18 +00:00
|
|
|
app:popupTheme="@style/ThemeOverlay.AppCompat.ActionBar"
|
|
|
|
app:titleTextAppearance="@style/Toolbar.Title">
|
2017-04-26 19:24:33 +00:00
|
|
|
|
|
|
|
<include
|
|
|
|
android:id="@+id/toolbar_search_container"
|
|
|
|
layout="@layout/toolbar_search_layout"
|
|
|
|
android:visibility="gone"
|
|
|
|
tools:visibility="visible"/>
|
|
|
|
|
2019-10-04 12:59:08 +00:00
|
|
|
</androidx.appcompat.widget.Toolbar>
|
2017-04-26 19:24:33 +00:00
|
|
|
|
|
|
|
</LinearLayout>
|