1 <?xml version="1.0" encoding="utf-8"?>
4 ~ Copyright © 2020 Damyan Ivanov.
5 ~ This file is part of MoLe.
6 ~ MoLe is free software: you can distribute it and/or modify it
7 ~ under the term of the GNU General Public License as published by
8 ~ the Free Software Foundation, either version 3 of the License, or
9 ~ (at your opinion), any later version.
11 ~ MoLe is distributed in the hope that it will be useful,
12 ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
13 ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 ~ GNU General Public License terms for details.
16 ~ You should have received a copy of the GNU General Public License
17 ~ along with MoLe. If not, see <https://www.gnu.org/licenses/>.
20 <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
21 xmlns:app="http://schemas.android.com/apk/res-auto"
22 xmlns:tools="http://schemas.android.com/tools"
23 android:layout_width="match_parent"
24 android:layout_height="wrap_content"
25 android:measureAllChildren="false"
28 <com.google.android.material.card.MaterialCardView
29 android:id="@+id/transaction_card_view"
30 style="@style/Widget.MaterialComponents.CardView"
31 android:layout_width="match_parent"
32 android:layout_height="wrap_content"
33 android:layout_margin="8dp"
34 android:visibility="visible"
35 app:cardElevation="2dp"
36 app:cardUseCompatPadding="false"
37 app:cardCornerRadius="0dp"
40 <androidx.constraintlayout.widget.ConstraintLayout
41 android:id="@+id/transaction_row"
42 android:layout_width="match_parent"
43 android:layout_height="wrap_content"
44 android:gravity="center_vertical"
45 android:minHeight="36dp"
50 android:id="@+id/transaction_row_head"
51 android:layout_width="match_parent"
52 android:layout_height="wrap_content"
53 android:orientation="vertical"
54 app:layout_constraintEnd_toEndOf="parent"
55 app:layout_constraintStart_toStartOf="parent"
56 app:layout_constraintTop_toTopOf="parent"
60 android:id="@+id/transaction_row_description"
61 android:layout_width="match_parent"
62 android:layout_height="wrap_content"
64 android:textAppearance="@android:style/TextAppearance.Material.Medium"
65 android:textStyle="bold"
66 tools:ignore="HardcodedText"
69 android:id="@+id/transaction_comment"
70 android:layout_width="match_parent"
71 android:layout_height="wrap_content"
72 android:layout_marginStart="0dp"
73 android:layout_marginTop="0dp"
74 android:text="Comment text"
75 tools:ignore="HardcodedText"
76 style="@style/transaction_list_comment"
81 android:id="@+id/transaction_row_acc_amounts"
82 android:layout_width="match_parent"
83 android:layout_height="wrap_content"
84 android:layout_marginTop="8dp"
85 android:orientation="vertical"
86 app:layout_constraintEnd_toEndOf="parent"
87 app:layout_constraintStart_toStartOf="parent"
88 app:layout_constraintTop_toBottomOf="@+id/transaction_row_head"
91 <include layout="@layout/transaction_list_row_accounts_table_row" />
92 <include layout="@layout/transaction_list_row_accounts_table_row" />
96 </androidx.constraintlayout.widget.ConstraintLayout>
97 </com.google.android.material.card.MaterialCardView>
99 <androidx.constraintlayout.widget.ConstraintLayout
100 android:id="@+id/transaction_delimiter"
101 android:layout_width="match_parent"
102 android:layout_height="wrap_content"
103 android:layout_marginStart="8dp"
104 android:layout_marginTop="16dp"
105 android:layout_marginEnd="8dp"
109 android:id="@+id/transaction_delimiter_month"
110 android:layout_width="wrap_content"
111 android:layout_height="match_parent"
112 android:layout_marginHorizontal="4dp"
113 android:text="---------"
114 android:textColor="?colorPrimary"
115 android:textStyle="bold"
116 app:layout_constraintEnd_toEndOf="parent"
117 tools:ignore="HardcodedText"
121 android:id="@+id/transaction_delimiter_date"
122 android:layout_width="wrap_content"
123 android:layout_height="match_parent"
124 android:layout_marginHorizontal="4dp"
125 android:text="--.--.----"
126 android:textColor="?colorPrimary"
127 android:textStyle="bold"
128 app:layout_constraintStart_toStartOf="parent"
129 tools:ignore="HardcodedText"
133 android:id="@+id/transaction_delimiter_thick"
134 android:layout_width="0dp"
135 android:layout_height="1dp"
136 android:layout_marginHorizontal="16dp"
137 android:background="?colorPrimary"
138 app:layout_constraintBottom_toBottomOf="parent"
139 app:layout_constraintEnd_toStartOf="@id/transaction_delimiter_month"
140 app:layout_constraintStart_toEndOf="@id/transaction_delimiter_date"
141 app:layout_constraintTop_toTopOf="parent"
144 </androidx.constraintlayout.widget.ConstraintLayout>