]> git.ktnx.net Git - mobile-ledger.git/blob - app/src/main/res/layout/account_list_summary_row.xml
more pronounced day/month delimiters in the transaction list
[mobile-ledger.git] / app / src / main / res / layout / account_list_summary_row.xml
1 <?xml version="1.0" encoding="utf-8"?>
2
3
4 <!--
5   ~ Copyright © 2021 Damyan Ivanov.
6   ~ This file is part of MoLe.
7   ~ MoLe is free software: you can distribute it and/or modify it
8   ~ under the term of the GNU General Public License as published by
9   ~ the Free Software Foundation, either version 3 of the License, or
10   ~ (at your opinion), any later version.
11   ~
12   ~ MoLe is distributed in the hope that it will be useful,
13   ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
14   ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15   ~ GNU General Public License terms for details.
16   ~
17   ~ You should have received a copy of the GNU General Public License
18   ~ along with MoLe. If not, see <https://www.gnu.org/licenses/>.
19   -->
20 <androidx.constraintlayout.widget.ConstraintLayout 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:id="@+id/account_summary_row"
24     android:layout_width="match_parent"
25     android:layout_height="wrap_content"
26     android:animateLayoutChanges="true"
27     android:longClickable="true"
28     android:paddingTop="4dp"
29     >
30
31     <TextView
32         android:id="@+id/last_update_text"
33         android:layout_width="0dp"
34         android:layout_height="wrap_content"
35         android:layout_marginHorizontal="@dimen/activity_horizontal_margin"
36         android:layout_weight="1"
37         android:gravity="center"
38         android:text="1 123 transactions as of 29.02.2020 13:37"
39         android:textAppearance="@android:style/TextAppearance.Material.Small"
40         app:layout_constraintEnd_toEndOf="parent"
41         app:layout_constraintStart_toStartOf="parent"
42         app:layout_constraintTop_toTopOf="parent"
43         tools:ignore="HardcodedText"
44         />
45
46 </androidx.constraintlayout.widget.ConstraintLayout>