activity_manage_accounts.xml

 1<?xml version="1.0" encoding="utf-8"?>
 2<layout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto">
 3
 4    <LinearLayout
 5        android:layout_width="fill_parent"
 6        android:layout_height="fill_parent"
 7        android:fitsSystemWindows="true"
 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:id="@+id/account_list"
24            android:layout_width="fill_parent"
25            android:layout_height="wrap_content"
26            android:divider="@android:color/transparent"
27            android:dividerHeight="0dp" />
28    </LinearLayout>
29</layout>