activity_search.xml

 1<?xml version="1.0" encoding="utf-8"?>
 2
 3<layout xmlns:android="http://schemas.android.com/apk/res/android">
 4
 5    <LinearLayout
 6        android:layout_width="match_parent"
 7        android:layout_height="match_parent"
 8        android:fitsSystemWindows="true"
 9        android:orientation="vertical">
10
11        <com.google.android.material.appbar.AppBarLayout
12            android:layout_width="match_parent"
13            android:layout_height="wrap_content">
14
15            <com.google.android.material.appbar.MaterialToolbar
16                android:id="@+id/toolbar"
17                android:layout_width="match_parent"
18                android:layout_height="wrap_content"
19                android:minHeight="?attr/actionBarSize" />
20
21        </com.google.android.material.appbar.AppBarLayout>
22
23        <ListView
24            android:id="@+id/search_results"
25            android:layout_width="match_parent"
26            android:layout_height="match_parent"
27            android:background="@drawable/background_search"
28            android:divider="@android:color/transparent"
29            android:dividerHeight="0dp"
30            android:listSelector="@android:color/transparent"
31            android:stackFromBottom="true" />
32    </LinearLayout>
33</layout>