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:orientation="vertical">
 9
10        <com.google.android.material.appbar.AppBarLayout
11            android:layout_width="match_parent"
12            android:layout_height="wrap_content">
13
14            <com.google.android.material.appbar.MaterialToolbar
15                android:id="@+id/toolbar"
16                android:layout_width="match_parent"
17                android:layout_height="wrap_content"
18                android:minHeight="?attr/actionBarSize" />
19
20        </com.google.android.material.appbar.AppBarLayout>
21
22        <ListView
23            android:background="@drawable/background_search"
24            android:id="@+id/search_results"
25            android:layout_width="match_parent"
26            android:layout_height="match_parent"
27            android:divider="@android:color/transparent"
28            android:dividerHeight="0dp"
29            android:listSelector="@android:color/transparent"
30            android:stackFromBottom="true" />
31    </LinearLayout>
32</layout>