activity_manage_accounts.xml

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