-
Notifications
You must be signed in to change notification settings - Fork 70
/
activity_modo_payment.xml
112 lines (101 loc) · 4.42 KB
/
activity_modo_payment.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.motion.widget.MotionLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layoutDescription="@xml/activity_modo_payment_scene"
tools:context=".modopay.ModoPaymentActivity">
<TextView
android:id="@+id/textView6"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="24dp"
android:fontFamily="@font/rubik_bold"
android:text="Nro: 32-1344164-32"
android:textColor="@android:color/black"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" />
<TextView
android:id="@+id/amount"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="74dp"
android:fontFamily="@font/rubik_bold"
android:textSize="34sp"
android:text="$ 10,165.76"
android:textColor="@android:color/black"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" />
<TextView
android:id="@+id/textView7"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="16dp"
android:text="De tu cuenta Galicia"
app:layout_constraintBottom_toTopOf="@+id/textView6"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" />
<View
android:id="@+id/view3"
android:layout_width="80dp"
android:layout_height="0dp"
android:background="@drawable/shape_modo_background_blue"
app:layout_constraintBottom_toBottomOf="@id/swipeViewStatic"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="@+id/swipeView" />
<View
android:id="@+id/swipeViewStatic"
android:layout_width="80dp"
android:layout_height="80dp"
android:layout_marginBottom="32dp"
android:background="@drawable/shape_circle_blue"
app:layout_constraintBottom_toTopOf="@+id/textView7"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" />
<View
android:id="@+id/view4"
android:layout_width="80dp"
android:layout_height="0dp"
android:layout_marginTop="150dp"
android:layout_marginBottom="32dp"
android:background="@drawable/shape_modo_background"
app:layout_constraintBottom_toTopOf="@+id/textView7"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<com.google.android.material.card.MaterialCardView
android:id="@+id/swipeView"
android:layout_width="80dp"
android:layout_height="80dp"
android:layout_marginBottom="32dp"
app:cardBackgroundColor="#004DBC"
app:cardCornerRadius="40dp"
app:cardElevation="0dp"
app:layout_constraintBottom_toTopOf="@+id/textView7"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" />
<ImageView
android:id="@+id/arrowUp"
android:layout_width="48dp"
android:layout_height="48dp"
android:src="@drawable/ic_arrow_upward_24px"
app:layout_constraintBottom_toBottomOf="@id/swipeView"
app:layout_constraintEnd_toEndOf="@id/swipeView"
app:layout_constraintStart_toStartOf="@id/swipeView"
app:layout_constraintTop_toTopOf="@id/swipeView"
app:tint="@android:color/white" />
<ImageView
android:id="@+id/check"
android:layout_width="48dp"
android:layout_height="48dp"
android:layout_marginTop="170dp"
android:src="@drawable/ic_check_24px"
app:layout_constraintEnd_toEndOf="@+id/view4"
app:layout_constraintStart_toStartOf="@+id/view4"
app:layout_constraintTop_toTopOf="parent"
app:tint="@android:color/white" />
</androidx.constraintlayout.motion.widget.MotionLayout>