I have used toolbar for search option but what I am unable to understand is how to get the search menu inside toolbar second line like this below.
I have used SearchDialog
and done it but it comes like below.
[2
but its overlapping like this
Do I have to use collapse bar? Have tried both SearchView
and SearchDialog
but not sure how to get above result.
Here is my toolbar xml code.
<com.google.android.material.appbar.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/Theme.GoodIes.AppBarOverlay">
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/teal_200"
app:popupTheme="@style/TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse" />
</com.google.android.material.appbar.AppBarLayout>
You can add child component inside the
Toolbar
like below :There is many way to archive view like your example, usually I only use Cardview and some TextView for customing my Toolbar.
Edit
For collapsing toolbar you need CoordinatorLayout and CollapsingToolbarLayout, so you need to do something like :
The short explanation, there is ImageView and Toolbar inside CollapsingToolbarLayout. The ImageView will hide/show when your content scroll. There is many long explanation on Google, you will find one.