]> git.ktnx.net Git - mobile-ledger.git/blob - app/src/main/res/layout/content_account_summary.xml
home is account summary, latest transactions is a new item
[mobile-ledger.git] / app / src / main / res / layout / content_account_summary.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
3     xmlns:app="http://schemas.android.com/apk/res-auto"
4     xmlns:tools="http://schemas.android.com/tools"
5     android:layout_width="match_parent"
6     android:layout_height="match_parent"
7     app:layout_behavior="@string/appbar_scrolling_view_behavior"
8     tools:context=".AccountSummary"
9     tools:showIn="@layout/app_bar_latest_transactions">
10
11     <TextView
12         android:id="@+id/textProgress"
13         android:layout_width="wrap_content"
14         android:layout_height="wrap_content"
15         android:text="TextView"
16         android:visibility="gone"
17         app:layout_constraintBottom_toBottomOf="parent"
18         app:layout_constraintEnd_toEndOf="parent"
19         app:layout_constraintStart_toStartOf="parent" />
20
21     <ProgressBar
22         android:id="@+id/progressBar"
23         style="?android:attr/progressBarStyle"
24         android:layout_width="wrap_content"
25         android:layout_height="wrap_content"
26         android:layout_marginStart="8dp"
27         android:layout_marginEnd="8dp"
28         android:layout_marginBottom="16dp"
29         android:visibility="gone"
30         app:layout_constraintBottom_toTopOf="@+id/textProgress"
31         app:layout_constraintEnd_toEndOf="parent"
32         app:layout_constraintStart_toStartOf="parent" />
33
34     <ScrollView
35         android:layout_width="match_parent"
36         android:layout_height="325dp"
37         android:layout_marginTop="8dp"
38         android:layout_marginBottom="40dp"
39         app:layout_constraintBottom_toTopOf="@+id/textProgress"
40         app:layout_constraintTop_toTopOf="parent">
41
42         <LinearLayout
43             android:layout_width="match_parent"
44             android:layout_height="wrap_content"
45             android:orientation="vertical">
46
47             <ScrollView
48                 android:layout_width="match_parent"
49                 android:layout_height="match_parent"
50                 android:paddingLeft="@dimen/activity_horizontal_margin">
51
52                 <LinearLayout
53                     android:layout_width="match_parent"
54                     android:layout_height="wrap_content"
55                     android:orientation="vertical">
56
57                     <ScrollView
58                         android:layout_width="match_parent"
59                         android:layout_height="match_parent"
60                         android:paddingLeft="@dimen/activity_horizontal_margin">
61
62                         <LinearLayout
63                             android:layout_width="match_parent"
64                             android:layout_height="wrap_content"
65                             android:orientation="vertical" />
66                     </ScrollView>
67                 </LinearLayout>
68             </ScrollView>
69
70         </LinearLayout>
71     </ScrollView>
72
73 </android.support.constraint.ConstraintLayout>