]> git.ktnx.net Git - mobile-ledger.git/blob - app/src/main/res/layout/activity_profile_list.xml
65a90c6bff80603dc17488fffa09b22af7b252ae
[mobile-ledger.git] / app / src / main / res / layout / activity_profile_list.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <!--
3   ~ Copyright © 2019 Damyan Ivanov.
4   ~ This file is part of Mobile-Ledger.
5   ~ Mobile-Ledger is free software: you can distribute it and/or modify it
6   ~ under the term of the GNU General Public License as published by
7   ~ the Free Software Foundation, either version 3 of the License, or
8   ~ (at your opinion), any later version.
9   ~
10   ~ Mobile-Ledger is distributed in the hope that it will be useful,
11   ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
12   ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13   ~ GNU General Public License terms for details.
14   ~
15   ~ You should have received a copy of the GNU General Public License
16   ~ along with Mobile-Ledger. If not, see <https://www.gnu.org/licenses/>.
17   -->
18
19 <android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
20     xmlns:app="http://schemas.android.com/apk/res-auto"
21     xmlns:tools="http://schemas.android.com/tools"
22     android:layout_width="match_parent"
23     android:layout_height="match_parent"
24     android:fitsSystemWindows="true"
25     tools:context=".ui.activity.ProfileListActivity">
26
27     <android.support.design.widget.AppBarLayout
28         android:id="@+id/app_bar"
29         android:layout_width="match_parent"
30         android:layout_height="wrap_content"
31         android:theme="@style/AppTheme.AppBarOverlay">
32
33         <android.support.v7.widget.Toolbar
34             android:id="@+id/toolbar"
35             android:layout_width="match_parent"
36             android:layout_height="?attr/actionBarSize"
37             app:popupTheme="@style/AppTheme.PopupOverlay" />
38
39     </android.support.design.widget.AppBarLayout>
40
41     <FrameLayout
42         android:id="@+id/frameLayout"
43         android:layout_width="match_parent"
44         android:layout_height="match_parent"
45         app:layout_behavior="@string/appbar_scrolling_view_behavior">
46
47         <include layout="@layout/profile_list" />
48     </FrameLayout>
49
50     <android.support.design.widget.FloatingActionButton
51         android:id="@+id/fab"
52         android:layout_width="wrap_content"
53         android:layout_height="wrap_content"
54         android:layout_gravity="bottom|end"
55         android:layout_margin="@dimen/fab_margin"
56         app:srcCompat="@drawable/svg_thick_plus_white" />
57
58
59 </android.support.design.widget.CoordinatorLayout>