]> git.ktnx.net Git - mobile-ledger.git/blob - app/src/main/res/layout/activity_new_transaction.xml
migrate to AndroidX
[mobile-ledger.git] / app / src / main / res / layout / activity_new_transaction.xml
1 <?xml version="1.0" encoding="utf-8"?><!--
2   ~ Copyright © 2018 Damyan Ivanov.
3   ~ This file is part of MoLe.
4   ~ MoLe 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   ~ MoLe 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 MoLe. If not, see <https://www.gnu.org/licenses/>.
16   -->
17
18 <androidx.coordinatorlayout.widget.CoordinatorLayout 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:layout_width="match_parent"
22     android:layout_height="match_parent"
23     tools:context=".ui.activity.NewTransactionActivity">
24
25     <com.google.android.material.appbar.AppBarLayout
26         android:layout_width="match_parent"
27         android:layout_height="wrap_content"
28         android:theme="@style/AppTheme.AppBarOverlay">
29
30         <androidx.appcompat.widget.Toolbar
31             android:id="@+id/toolbar"
32             android:layout_width="match_parent"
33             android:layout_height="?attr/actionBarSize"
34             android:background="?attr/colorPrimary"
35             app:popupTheme="@style/AppTheme.PopupOverlay" />
36
37     </com.google.android.material.appbar.AppBarLayout>
38
39     <include layout="@layout/content_new_transaction" />
40
41     <androidx.constraintlayout.widget.ConstraintLayout
42         android:layout_width="match_parent"
43         android:layout_height="match_parent">
44
45         <ProgressBar
46             android:id="@+id/save_transaction_progress"
47             android:layout_width="80dp"
48             android:layout_height="80dp"
49             android:layout_margin="4dp"
50             android:indeterminate="true"
51             android:visibility="invisible"
52             app:layout_constraintBottom_toBottomOf="parent"
53             app:layout_constraintEnd_toEndOf="parent" />
54
55         <com.google.android.material.floatingactionbutton.FloatingActionButton
56             android:id="@+id/fab"
57             android:layout_width="wrap_content"
58             android:layout_height="wrap_content"
59             android:layout_gravity="center"
60             android:padding="@dimen/fab_margin"
61             android:tint="@android:color/white"
62             android:visibility="gone"
63             app:backgroundTint="?colorPrimary"
64             app:layout_constraintBottom_toBottomOf="@id/save_transaction_progress"
65             app:layout_constraintEnd_toEndOf="@id/save_transaction_progress"
66             app:layout_constraintStart_toStartOf="@id/save_transaction_progress"
67             app:layout_constraintTop_toTopOf="@id/save_transaction_progress"
68             app:srcCompat="@drawable/ic_save_white_24dp" />
69
70     </androidx.constraintlayout.widget.ConstraintLayout>
71
72 </androidx.coordinatorlayout.widget.CoordinatorLayout>