Showing
5 changed files
with
126 additions
and
0 deletions
1 | +<?xml version="1.0" encoding="utf-8"?> | ||
2 | +<shape xmlns:android="http://schemas.android.com/apk/res/android"> | ||
3 | + <solid android:color="#F2F2F2"/> | ||
4 | + <corners android:radius="10dp"/> | ||
5 | + <padding android:left="0dp" android:top="0dp" android:right="0dp" android:bottom="0dp" /> | ||
6 | +</shape> | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
1 | +<?xml version="1.0" encoding="utf-8"?> | ||
2 | +<RelativeLayout xmlns:app="http://schemas.android.com/apk/res-auto" | ||
3 | + xmlns:tools="http://schemas.android.com/tools" | ||
4 | + android:id="@+id/cl_bill_payment" | ||
5 | + android:layout_width="match_parent" | ||
6 | + android:layout_height="match_parent" | ||
7 | + xmlns:android="http://schemas.android.com/apk/res/android"> | ||
8 | + | ||
9 | + <androidx.constraintlayout.widget.ConstraintLayout | ||
10 | + android:id="@+id/cl_bill_header" | ||
11 | + android:layout_width="match_parent" | ||
12 | + android:layout_height="80dp" | ||
13 | + app:layout_constraintTop_toTopOf="parent"> | ||
14 | + | ||
15 | + <ImageView | ||
16 | + android:id="@+id/iv_bill_payment_close" | ||
17 | + android:layout_width="21dp" | ||
18 | + android:layout_height="20dp" | ||
19 | + android:layout_marginStart="24dp" | ||
20 | + android:layout_marginTop="4dp" | ||
21 | + android:src="@drawable/ic_close" | ||
22 | + app:layout_constraintStart_toStartOf="parent" | ||
23 | + app:layout_constraintTop_toTopOf="@+id/textView3" /> | ||
24 | + | ||
25 | + <TextView | ||
26 | + android:id="@+id/textView3" | ||
27 | + android:layout_width="206dp" | ||
28 | + android:layout_height="32dp" | ||
29 | + android:gravity="center" | ||
30 | + android:text="Ιστορικό" | ||
31 | + android:textColor="@color/grey" | ||
32 | + android:textSize="17sp" | ||
33 | + android:textStyle="bold" | ||
34 | + app:layout_constraintBottom_toBottomOf="parent" | ||
35 | + app:layout_constraintEnd_toEndOf="parent" | ||
36 | + app:layout_constraintHorizontal_bias="0.348" | ||
37 | + app:layout_constraintStart_toEndOf="@+id/iv_bill_payment_close" | ||
38 | + app:layout_constraintTop_toTopOf="parent" /> | ||
39 | + </androidx.constraintlayout.widget.ConstraintLayout> | ||
40 | + | ||
41 | + <androidx.constraintlayout.widget.ConstraintLayout | ||
42 | + android:layout_width="match_parent" | ||
43 | + android:layout_height="807dp" | ||
44 | + android:layout_below="@+id/cl_bill_header" | ||
45 | + android:layout_marginTop="1dp" | ||
46 | + android:background="@drawable/shape_cos_loyalty" | ||
47 | + android:orientation="vertical" | ||
48 | + android:paddingBottom="24dp" | ||
49 | + tools:layout_editor_absoluteX="-2dp"> | ||
50 | + | ||
51 | + <include | ||
52 | + android:id="@+id/cl_transaction" | ||
53 | + layout="@layout/coupon_transaction" | ||
54 | + android:layout_width="381dp" | ||
55 | + android:layout_height="117dp" | ||
56 | + android:layout_marginTop="44dp" | ||
57 | + app:layout_constraintEnd_toEndOf="parent" | ||
58 | + app:layout_constraintHorizontal_bias="0.533" | ||
59 | + app:layout_constraintStart_toStartOf="parent" | ||
60 | + app:layout_constraintTop_toTopOf="parent" /> | ||
61 | + </androidx.constraintlayout.widget.ConstraintLayout> | ||
62 | +</RelativeLayout> | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
... | @@ -118,6 +118,7 @@ | ... | @@ -118,6 +118,7 @@ |
118 | </androidx.constraintlayout.widget.ConstraintLayout> | 118 | </androidx.constraintlayout.widget.ConstraintLayout> |
119 | 119 | ||
120 | <TextView | 120 | <TextView |
121 | + android:id="@+id/tv_analysis_details" | ||
121 | android:layout_width="match_parent" | 122 | android:layout_width="match_parent" |
122 | android:layout_height="50dp" | 123 | android:layout_height="50dp" |
123 | android:layout_marginHorizontal="16dp" | 124 | android:layout_marginHorizontal="16dp" | ... | ... |
1 | +<?xml version="1.0" encoding="utf-8"?> | ||
2 | +<androidx.constraintlayout.widget.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:id="@+id/cl_transcation_item" | ||
6 | + android:layout_width="match_parent" | ||
7 | + android:layout_height="match_parent" | ||
8 | + android:paddingVertical="5dp" | ||
9 | + android:background="@drawable/banner_border_white"> | ||
10 | + | ||
11 | + <TextView | ||
12 | + android:id="@+id/tv_transaction_title" | ||
13 | + android:layout_width="282dp" | ||
14 | + android:layout_height="24dp" | ||
15 | + android:layout_marginStart="20dp" | ||
16 | + android:layout_marginTop="8dp" | ||
17 | + android:lines="1" | ||
18 | + android:text="Κουπόνι" | ||
19 | + app:layout_constraintEnd_toEndOf="parent" | ||
20 | + app:layout_constraintHorizontal_bias="0.0" | ||
21 | + app:layout_constraintStart_toEndOf="@+id/view2" | ||
22 | + app:layout_constraintTop_toTopOf="parent" /> | ||
23 | + | ||
24 | + <TextView | ||
25 | + android:id="@+id/tv_transaction_subtitle" | ||
26 | + android:layout_width="286dp" | ||
27 | + android:layout_height="wrap_content" | ||
28 | + android:layout_marginTop="4dp" | ||
29 | + android:text="BOX 4€ έκπτωση για την επόμενη παραγγελία σου!" | ||
30 | + android:lines="2" | ||
31 | + app:layout_constraintEnd_toEndOf="parent" | ||
32 | + app:layout_constraintHorizontal_bias="0.0" | ||
33 | + app:layout_constraintStart_toStartOf="@+id/tv_transaction_title" | ||
34 | + app:layout_constraintTop_toBottomOf="@+id/tv_transaction_title" /> | ||
35 | + | ||
36 | + <TextView | ||
37 | + android:id="@+id/textView20" | ||
38 | + android:layout_width="wrap_content" | ||
39 | + android:layout_height="wrap_content" | ||
40 | + android:layout_marginTop="12dp" | ||
41 | + android:text="26-11-2021" | ||
42 | + app:layout_constraintEnd_toEndOf="parent" | ||
43 | + app:layout_constraintHorizontal_bias="0.952" | ||
44 | + app:layout_constraintStart_toStartOf="parent" | ||
45 | + app:layout_constraintTop_toBottomOf="@+id/tv_transaction_subtitle" /> | ||
46 | + | ||
47 | + <View | ||
48 | + android:id="@+id/view2" | ||
49 | + android:layout_width="45dp" | ||
50 | + android:layout_height="45dp" | ||
51 | + android:layout_marginStart="16dp" | ||
52 | + android:layout_marginTop="8dp" | ||
53 | + android:background="@drawable/banner_border_grey_bg2" | ||
54 | + app:layout_constraintStart_toStartOf="parent" | ||
55 | + app:layout_constraintTop_toTopOf="parent" /> | ||
56 | +</androidx.constraintlayout.widget.ConstraintLayout> | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
... | @@ -71,6 +71,7 @@ | ... | @@ -71,6 +71,7 @@ |
71 | app:layout_constraintTop_toTopOf="parent" /> | 71 | app:layout_constraintTop_toTopOf="parent" /> |
72 | 72 | ||
73 | <include | 73 | <include |
74 | + android:id="@+id/cl_chart_info" | ||
74 | layout="@layout/cos_analysis" | 75 | layout="@layout/cos_analysis" |
75 | android:layout_width="match_parent" | 76 | android:layout_width="match_parent" |
76 | android:layout_height="wrap_content" | 77 | android:layout_height="wrap_content" | ... | ... |
-
Please register or login to post a comment