]> git.ktnx.net Git - mobile-ledger.git/blob - app/src/main/res/layout/transaction_list_fragment.xml
remove unused LinearLayout
[mobile-ledger.git] / app / src / main / res / layout / transaction_list_fragment.xml
1 <?xml version="1.0" encoding="utf-8"?><!--
2   ~ Copyright © 2019 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.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
19     xmlns:app="http://schemas.android.com/apk/res-auto"
20     xmlns:tools="http://schemas.android.com/tools"
21     android:id="@+id/transaction_list"
22     android:layout_width="match_parent"
23     android:layout_height="match_parent"
24     app:layout_behavior="@string/appbar_scrolling_view_behavior"
25     app:layout_constraintBottom_toBottomOf="parent"
26     tools:context="net.ktnx.mobileledger.ui.activity.MainActivity">
27
28     <android.support.v4.widget.SwipeRefreshLayout
29         android:id="@+id/transaction_swipe"
30         android:layout_width="match_parent"
31         android:layout_height="0dp"
32         app:layout_constraintBottom_toBottomOf="parent"
33         app:layout_constraintEnd_toEndOf="parent"
34         app:layout_constraintStart_toStartOf="parent"
35         app:layout_constraintTop_toTopOf="parent">
36
37         <android.support.v7.widget.RecyclerView
38             android:id="@+id/transaction_root"
39             android:layout_width="match_parent"
40             android:layout_height="match_parent"
41             android:scrollbars="vertical" />
42     </android.support.v4.widget.SwipeRefreshLayout>
43
44 </android.support.constraint.ConstraintLayout>