Showing
6 changed files
with
214 additions
and
1 deletions
| 1 | +<?xml version="1.0" encoding="utf-8"?> | ||
| 2 | +<shape xmlns:android="http://schemas.android.com/apk/res/android"> | ||
| 3 | + <solid android:color="#EEF7FF"/> | ||
| 4 | + <stroke android:width="3dp" android:color="#EEF7FF" /> | ||
| 5 | + <corners android:radius="10dp"/> | ||
| 6 | + <padding android:left="0dp" android:top="0dp" android:right="0dp" android:bottom="0dp" /> | ||
| 7 | +</shape> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file | 
| 1 | +<?xml version="1.0" encoding="utf-8"?> | ||
| 2 | +<shape xmlns:android="http://schemas.android.com/apk/res/android"> | ||
| 3 | + <solid android:color="#415564"/> | ||
| 4 | + <stroke android:width="3dp" android:color="#415564" /> | ||
| 5 | + <corners android:radius="10dp"/> | ||
| 6 | + <padding android:left="0dp" android:top="0dp" android:right="0dp" android:bottom="0dp" /> | ||
| 7 | +</shape> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file | 
| 1 | +<?xml version="1.0" encoding="utf-8"?> | ||
| 2 | +<shape xmlns:android="http://schemas.android.com/apk/res/android" | ||
| 3 | + android:shape="rectangle"> | ||
| 4 | + <corners android:topLeftRadius="30dp" /> | ||
| 5 | + | ||
| 6 | + <solid android:color="@color/white" /> | ||
| 7 | +</shape> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file | 
| 1 | +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
| 2 | + xmlns:app="http://schemas.android.com/apk/res-auto" | ||
| 3 | + xmlns:tools="http://schemas.android.com/tools" | ||
| 4 | + android:layout_width="match_parent" | ||
| 5 | + android:layout_height="match_parent" | ||
| 6 | + android:background="@android:color/white"> | ||
| 7 | + | ||
| 8 | + <androidx.constraintlayout.widget.ConstraintLayout | ||
| 9 | + android:id="@+id/cl_loyalty_wallet_header" | ||
| 10 | + android:layout_width="match_parent" | ||
| 11 | + android:layout_height="50dp" | ||
| 12 | + android:background="@android:color/white"> | ||
| 13 | + | ||
| 14 | + <ImageView | ||
| 15 | + android:id="@+id/iv_back" | ||
| 16 | + android:layout_width="20dp" | ||
| 17 | + android:layout_height="20dp" | ||
| 18 | + android:layout_marginStart="16dp" | ||
| 19 | + android:src="@drawable/ic_back" | ||
| 20 | + app:layout_constraintBottom_toBottomOf="parent" | ||
| 21 | + app:layout_constraintStart_toStartOf="parent" | ||
| 22 | + app:layout_constraintTop_toTopOf="parent" /> | ||
| 23 | + | ||
| 24 | + <TextView | ||
| 25 | + android:layout_width="wrap_content" | ||
| 26 | + android:layout_height="wrap_content" | ||
| 27 | + android:text="@string/cos_coupon_info_title" | ||
| 28 | + android:textColor="@color/grey" | ||
| 29 | + android:textSize="17sp" | ||
| 30 | + android:textStyle="bold" | ||
| 31 | + app:layout_constraintBottom_toBottomOf="parent" | ||
| 32 | + app:layout_constraintEnd_toEndOf="parent" | ||
| 33 | + app:layout_constraintStart_toStartOf="parent" | ||
| 34 | + app:layout_constraintTop_toTopOf="parent" /> | ||
| 35 | + </androidx.constraintlayout.widget.ConstraintLayout> | ||
| 36 | + | ||
| 37 | + <ScrollView | ||
| 38 | + android:layout_width="match_parent" | ||
| 39 | + android:layout_height="match_parent" | ||
| 40 | + android:layout_below="@+id/cl_loyalty_wallet_header"> | ||
| 41 | + | ||
| 42 | + <androidx.constraintlayout.widget.ConstraintLayout | ||
| 43 | + android:layout_width="match_parent" | ||
| 44 | + android:layout_height="wrap_content" | ||
| 45 | + android:background="@android:color/white" | ||
| 46 | + android:paddingTop="48dp"> | ||
| 47 | + | ||
| 48 | + <androidx.constraintlayout.widget.ConstraintLayout | ||
| 49 | + android:id="@+id/cl_loyalty_info_view_inner" | ||
| 50 | + android:layout_width="match_parent" | ||
| 51 | + android:layout_height="match_parent" | ||
| 52 | + android:background="@drawable/shape_cos_coupon_info" | ||
| 53 | + android:paddingBottom="48dp" | ||
| 54 | + app:layout_constraintEnd_toEndOf="parent" | ||
| 55 | + app:layout_constraintStart_toStartOf="parent" | ||
| 56 | + app:layout_constraintTop_toTopOf="parent"> | ||
| 57 | + | ||
| 58 | + | ||
| 59 | + <TextView | ||
| 60 | + android:id="@+id/textView13" | ||
| 61 | + android:layout_width="374dp" | ||
| 62 | + android:layout_height="wrap_content" | ||
| 63 | + android:layout_marginTop="32dp" | ||
| 64 | + android:text="Πάρε δωρεάν μηνιαία πακέτα με πάνες στα supermarket Σκλαβενίτης!" | ||
| 65 | + app:layout_constraintEnd_toEndOf="parent" | ||
| 66 | + app:layout_constraintHorizontal_bias="0.432" | ||
| 67 | + app:layout_constraintStart_toStartOf="parent" | ||
| 68 | + app:layout_constraintTop_toBottomOf="@+id/imageView6" /> | ||
| 69 | + | ||
| 70 | + <ImageView | ||
| 71 | + android:id="@+id/imageView6" | ||
| 72 | + android:layout_width="444dp" | ||
| 73 | + android:layout_height="224dp" | ||
| 74 | + android:scaleType="fitXY" | ||
| 75 | + android:src="@drawable/carousel_banner" | ||
| 76 | + app:layout_constraintStart_toStartOf="parent" | ||
| 77 | + app:layout_constraintTop_toTopOf="parent" /> | ||
| 78 | + | ||
| 79 | + <TextView | ||
| 80 | + android:id="@+id/textView14" | ||
| 81 | + android:layout_width="374dp" | ||
| 82 | + android:layout_height="wrap_content" | ||
| 83 | + android:layout_marginTop="32dp" | ||
| 84 | + android:text="Χρησιμοποίησε τον παρακάτω κωδικό και πάρε δωρεάν πακέτο πάνες Pampers αποκλειστικά στα Supermarket Σκλαβενίτης" | ||
| 85 | + app:layout_constraintEnd_toEndOf="@+id/textView13" | ||
| 86 | + app:layout_constraintHorizontal_bias="0.0" | ||
| 87 | + app:layout_constraintStart_toStartOf="@+id/textView13" | ||
| 88 | + app:layout_constraintTop_toBottomOf="@+id/textView13" /> | ||
| 89 | + | ||
| 90 | + <TextView | ||
| 91 | + android:id="@+id/textView15" | ||
| 92 | + android:layout_width="wrap_content" | ||
| 93 | + android:layout_height="wrap_content" | ||
| 94 | + android:text="Κωδικός Κουπονιού" | ||
| 95 | + app:layout_constraintBottom_toTopOf="@+id/textView16" | ||
| 96 | + app:layout_constraintEnd_toEndOf="@+id/textView14" | ||
| 97 | + app:layout_constraintStart_toStartOf="@+id/textView14" | ||
| 98 | + app:layout_constraintTop_toBottomOf="@+id/textView14" /> | ||
| 99 | + | ||
| 100 | + <TextView | ||
| 101 | + android:id="@+id/textView16" | ||
| 102 | + android:layout_width="320dp" | ||
| 103 | + android:layout_height="53dp" | ||
| 104 | + android:background="@drawable/banner_border_light_blue" | ||
| 105 | + android:gravity="center" | ||
| 106 | + android:text="1A2C378" | ||
| 107 | + android:textFontWeight="1000" | ||
| 108 | + android:textSize="25dp" | ||
| 109 | + app:layout_constraintEnd_toEndOf="parent" | ||
| 110 | + app:layout_constraintStart_toStartOf="parent" | ||
| 111 | + tools:layout_editor_absoluteY="445dp" /> | ||
| 112 | + | ||
| 113 | + <TextView | ||
| 114 | + android:id="@+id/textView17" | ||
| 115 | + android:layout_width="wrap_content" | ||
| 116 | + android:layout_height="wrap_content" | ||
| 117 | + android:layout_marginTop="16dp" | ||
| 118 | + android:text="Το κουπόνι ισχύει έως 05/12/2022" | ||
| 119 | + app:layout_constraintEnd_toEndOf="parent" | ||
| 120 | + app:layout_constraintStart_toStartOf="parent" | ||
| 121 | + app:layout_constraintTop_toBottomOf="@+id/textView16" /> | ||
| 122 | + | ||
| 123 | + <TextView | ||
| 124 | + android:id="@+id/textView18" | ||
| 125 | + android:layout_width="wrap_content" | ||
| 126 | + android:layout_height="wrap_content" | ||
| 127 | + android:layout_marginTop="32dp" | ||
| 128 | + android:text="Όροι χρήσης" | ||
| 129 | + app:layout_constraintBottom_toBottomOf="parent" | ||
| 130 | + app:layout_constraintEnd_toEndOf="parent" | ||
| 131 | + app:layout_constraintStart_toStartOf="parent" | ||
| 132 | + app:layout_constraintTop_toBottomOf="@+id/ll_get_gift" /> | ||
| 133 | + | ||
| 134 | + <LinearLayout | ||
| 135 | + android:id="@+id/ll_gift_it" | ||
| 136 | + android:layout_width="318dp" | ||
| 137 | + android:layout_height="52dp" | ||
| 138 | + android:layout_marginTop="44dp" | ||
| 139 | + android:background="@drawable/button_border_dark_blue" | ||
| 140 | + android:clickable="true" | ||
| 141 | + android:gravity="center" | ||
| 142 | + android:orientation="horizontal" | ||
| 143 | + app:layout_constraintEnd_toEndOf="parent" | ||
| 144 | + app:layout_constraintHorizontal_bias="0.494" | ||
| 145 | + app:layout_constraintStart_toStartOf="parent" | ||
| 146 | + app:layout_constraintTop_toBottomOf="@+id/textView17"> | ||
| 147 | + | ||
| 148 | + <ImageView | ||
| 149 | + android:layout_width="34dp" | ||
| 150 | + android:layout_height="25dp" | ||
| 151 | + android:layout_marginRight="15dp" | ||
| 152 | + android:adjustViewBounds="true" | ||
| 153 | + android:scaleType="fitCenter" | ||
| 154 | + android:src="@drawable/phone_white" /> | ||
| 155 | + | ||
| 156 | + <TextView | ||
| 157 | + android:layout_width="wrap_content" | ||
| 158 | + android:layout_height="wrap_content" | ||
| 159 | + android:gravity="center" | ||
| 160 | + android:text="Κάντο δώρο!" | ||
| 161 | + android:textSize="17dp" | ||
| 162 | + android:textColor="@color/white"/> | ||
| 163 | + </LinearLayout> | ||
| 164 | + | ||
| 165 | + <LinearLayout | ||
| 166 | + android:id="@+id/ll_get_gift" | ||
| 167 | + android:layout_width="318dp" | ||
| 168 | + android:layout_height="52dp" | ||
| 169 | + android:layout_marginTop="24dp" | ||
| 170 | + android:background="@drawable/shape_cos_gradient2" | ||
| 171 | + android:clickable="true" | ||
| 172 | + android:gravity="center" | ||
| 173 | + android:orientation="horizontal" | ||
| 174 | + app:layout_constraintEnd_toEndOf="parent" | ||
| 175 | + app:layout_constraintHorizontal_bias="0.516" | ||
| 176 | + app:layout_constraintStart_toStartOf="parent" | ||
| 177 | + app:layout_constraintTop_toBottomOf="@+id/ll_gift_it"> | ||
| 178 | + | ||
| 179 | + <TextView | ||
| 180 | + android:layout_width="wrap_content" | ||
| 181 | + android:layout_height="wrap_content" | ||
| 182 | + android:gravity="center" | ||
| 183 | + android:text="Πάρε το δώρο σου" | ||
| 184 | + android:textSize="17dp" | ||
| 185 | + android:textColor="@color/white"/> | ||
| 186 | + </LinearLayout> | ||
| 187 | + | ||
| 188 | + </androidx.constraintlayout.widget.ConstraintLayout> | ||
| 189 | + </androidx.constraintlayout.widget.ConstraintLayout> | ||
| 190 | + </ScrollView> | ||
| 191 | +</RelativeLayout> | 
| ... | @@ -141,7 +141,7 @@ | ... | @@ -141,7 +141,7 @@ | 
| 141 | android:layout_width="match_parent" | 141 | android:layout_width="match_parent" | 
| 142 | android:layout_height="wrap_content" | 142 | android:layout_height="wrap_content" | 
| 143 | android:layout_marginStart="16dp" | 143 | android:layout_marginStart="16dp" | 
| 144 | - android:text="Day Free COSMOTE TV pass στο κινητό" | 144 | + android:text="Δωρεάν κουπόνι ΙΚΕΑ αξίας 10€" | 
| 145 | android:textSize="17dp" | 145 | android:textSize="17dp" | 
| 146 | app:layout_constraintBottom_toBottomOf="parent" | 146 | app:layout_constraintBottom_toBottomOf="parent" | 
| 147 | app:layout_constraintStart_toStartOf="parent" | 147 | app:layout_constraintStart_toStartOf="parent" | ... | ... | 
| ... | @@ -24,6 +24,7 @@ | ... | @@ -24,6 +24,7 @@ | 
| 24 | <string name="cos_questionnaire">Ερωτηματολόγιο</string> | 24 | <string name="cos_questionnaire">Ερωτηματολόγιο</string> | 
| 25 | <string name="cos_gifts_loyalty_title">Τα δώρα μου</string> | 25 | <string name="cos_gifts_loyalty_title">Τα δώρα μου</string> | 
| 26 | <string name="cos_coupons_loyalty_title">Ενεργά κουπόνια</string> | 26 | <string name="cos_coupons_loyalty_title">Ενεργά κουπόνια</string> | 
| 27 | + <string name="cos_coupon_info_title">Εκπτωτικό κουπόνι</string> | ||
| 27 | 28 | ||
| 28 | <string-array name="coupons_array"> | 29 | <string-array name="coupons_array"> | 
| 29 | <item>Κουπόνια</item> | 30 | <item>Κουπόνια</item> | ... | ... | 
- 
Please register or login to post a comment