]> git.ktnx.net Git - mobile-ledger.git/blob - app/src/main/res/layout/transaction_list_activity.xml
start the Transaction list activity not really a thing yet
[mobile-ledger.git] / app / src / main / res / layout / transaction_list_activity.xml
1 <?xml version="1.0" encoding="utf-8"?><!--
2   ~ Copyright © 2018 Damyan Ivanov.
3   ~ This file is part of Mobile-Ledger.
4   ~ Mobile-Ledger is free software: you can distribute it and/or modify it
5   ~ under the term of the GNU General Public License as published by
6   ~ the Free Software Foundation, either version 3 of the License, or
7   ~ (at your opinion), any later version.
8   ~
9   ~ Mobile-Ledger is distributed in the hope that it will be useful,
10   ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
11   ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12   ~ GNU General Public License terms for details.
13   ~
14   ~ You should have received a copy of the GNU General Public License
15   ~ along with Mobile-Ledger. If not, see <https://www.gnu.org/licenses/>.
16   -->
17
18 <android.support.design.widget.CoordinatorLayout
19     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     tools:context=".TransactionListActivity">
25
26     <android.support.design.widget.AppBarLayout
27         android:layout_width="match_parent"
28         android:layout_height="wrap_content"
29         android:theme="@style/AppTheme.AppBarOverlay">
30
31         <android.support.v7.widget.Toolbar
32             android:id="@+id/toolbar"
33             android:layout_width="match_parent"
34             android:layout_height="?attr/actionBarSize"
35             android:background="?attr/colorPrimary"
36             app:popupTheme="@style/AppTheme.PopupOverlay" />
37
38     </android.support.design.widget.AppBarLayout>
39
40     <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
41         xmlns:tools="http://schemas.android.com/tools"
42         android:id="@+id/container"
43         android:layout_width="match_parent"
44         android:layout_height="match_parent"
45         tools:context=".TransactionListActivity" />
46 </android.support.design.widget.CoordinatorLayout>