Showing
6 changed files
with
44 additions
and
12 deletions
... | @@ -5,7 +5,7 @@ android.buildFeatures.buildConfig = true | ... | @@ -5,7 +5,7 @@ android.buildFeatures.buildConfig = true |
5 | 5 | ||
6 | ext { | 6 | ext { |
7 | PUBLISH_GROUP_ID = 'ly.warp' | 7 | PUBLISH_GROUP_ID = 'ly.warp' |
8 | - PUBLISH_VERSION = '4.5.5.4r48' | 8 | + PUBLISH_VERSION = '4.5.5.4pa1' |
9 | PUBLISH_ARTIFACT_ID = 'warply-android-sdk' | 9 | PUBLISH_ARTIFACT_ID = 'warply-android-sdk' |
10 | } | 10 | } |
11 | 11 | ... | ... |
... | @@ -30,7 +30,8 @@ public class MarketPassInfoActivity extends Activity implements View.OnClickList | ... | @@ -30,7 +30,8 @@ public class MarketPassInfoActivity extends Activity implements View.OnClickList |
30 | 30 | ||
31 | private ImageView mIvBack, mIvGenericImage; | 31 | private ImageView mIvBack, mIvGenericImage; |
32 | private TextView mFontHeader, mTvPassInfoHeader, mTvBasketTitle, mTvBasketSubtitle, | 32 | private TextView mFontHeader, mTvPassInfoHeader, mTvBasketTitle, mTvBasketSubtitle, |
33 | - mTvEshopTitle, mTvEshopSubtitle, mTvAbTitle, mTvAbSubtitle, mTvPassBack; | 33 | + mTvEshopTitle, mTvEshopSubtitle, mTvAbTitle, mTvAbSubtitle, mTvPassBack, |
34 | + mTvBasketProductTitle; | ||
34 | private LinearLayout mLlPassReturn; | 35 | private LinearLayout mLlPassReturn; |
35 | 36 | ||
36 | // =========================================================== | 37 | // =========================================================== |
... | @@ -46,6 +47,7 @@ public class MarketPassInfoActivity extends Activity implements View.OnClickList | ... | @@ -46,6 +47,7 @@ public class MarketPassInfoActivity extends Activity implements View.OnClickList |
46 | mFontHeader = findViewById(R.id.textView3); | 47 | mFontHeader = findViewById(R.id.textView3); |
47 | mTvPassInfoHeader = findViewById(R.id.tv_pass_info_header); | 48 | mTvPassInfoHeader = findViewById(R.id.tv_pass_info_header); |
48 | mTvBasketTitle = findViewById(R.id.tv_pass_info_basket_title); | 49 | mTvBasketTitle = findViewById(R.id.tv_pass_info_basket_title); |
50 | + mTvBasketProductTitle = findViewById(R.id.tv_pass_info_basket_product_title); | ||
49 | mTvBasketSubtitle = findViewById(R.id.tv_pass_info_basket_subtitle); | 51 | mTvBasketSubtitle = findViewById(R.id.tv_pass_info_basket_subtitle); |
50 | mTvEshopTitle = findViewById(R.id.tv_pass_info_eshop_title); | 52 | mTvEshopTitle = findViewById(R.id.tv_pass_info_eshop_title); |
51 | mTvEshopSubtitle = findViewById(R.id.tv_pass_info_eshop_subtitle); | 53 | mTvEshopSubtitle = findViewById(R.id.tv_pass_info_eshop_subtitle); |
... | @@ -57,7 +59,7 @@ public class MarketPassInfoActivity extends Activity implements View.OnClickList | ... | @@ -57,7 +59,7 @@ public class MarketPassInfoActivity extends Activity implements View.OnClickList |
57 | 59 | ||
58 | WarpUtils.renderCustomFont(this, R.font.bt_cosmo_bold, mFontHeader, mTvPassInfoHeader); | 60 | WarpUtils.renderCustomFont(this, R.font.bt_cosmo_bold, mFontHeader, mTvPassInfoHeader); |
59 | WarpUtils.renderCustomFont(this, R.font.peridot_bold, mTvBasketTitle, mTvEshopTitle, | 61 | WarpUtils.renderCustomFont(this, R.font.peridot_bold, mTvBasketTitle, mTvEshopTitle, |
60 | - mTvAbTitle, mTvPassBack); | 62 | + mTvAbTitle, mTvPassBack, mTvBasketProductTitle); |
61 | WarpUtils.renderCustomFont(this, R.font.peridot_regular, mTvBasketSubtitle, | 63 | WarpUtils.renderCustomFont(this, R.font.peridot_regular, mTvBasketSubtitle, |
62 | mTvEshopSubtitle, mTvAbSubtitle); | 64 | mTvEshopSubtitle, mTvAbSubtitle); |
63 | 65 | ... | ... |
... | @@ -151,7 +151,8 @@ | ... | @@ -151,7 +151,8 @@ |
151 | android:layout_height="wrap_content" | 151 | android:layout_height="wrap_content" |
152 | android:layout_below="@+id/rl_parent_pass" | 152 | android:layout_below="@+id/rl_parent_pass" |
153 | android:background="@color/cos_green14" | 153 | android:background="@color/cos_green14" |
154 | - android:gravity="center"> | 154 | + android:gravity="center" |
155 | + android:paddingVertical="16dp"> | ||
155 | 156 | ||
156 | <TextView | 157 | <TextView |
157 | android:id="@+id/tv_total_pass_title" | 158 | android:id="@+id/tv_total_pass_title" |
... | @@ -161,7 +162,7 @@ | ... | @@ -161,7 +162,7 @@ |
161 | android:letterSpacing="0.04" | 162 | android:letterSpacing="0.04" |
162 | android:textColor="@color/white" | 163 | android:textColor="@color/white" |
163 | android:textSize="16sp" | 164 | android:textSize="16sp" |
164 | - android:paddingVertical="16dp" | 165 | + android:paddingHorizontal="24dp" |
165 | app:lineHeight="22dp" /> | 166 | app:lineHeight="22dp" /> |
166 | </LinearLayout> | 167 | </LinearLayout> |
167 | 168 | ... | ... |
... | @@ -20,9 +20,9 @@ | ... | @@ -20,9 +20,9 @@ |
20 | android:layout_width="48dp" | 20 | android:layout_width="48dp" |
21 | android:layout_height="48dp" | 21 | android:layout_height="48dp" |
22 | android:layout_marginStart="16dp" | 22 | android:layout_marginStart="16dp" |
23 | + android:contentDescription="@string/accessibility_back" | ||
23 | android:scaleType="centerInside" | 24 | android:scaleType="centerInside" |
24 | android:src="@drawable/ic_back" | 25 | android:src="@drawable/ic_back" |
25 | - android:contentDescription="@string/accessibility_back" | ||
26 | app:layout_constraintBottom_toBottomOf="parent" | 26 | app:layout_constraintBottom_toBottomOf="parent" |
27 | app:layout_constraintStart_toStartOf="parent" | 27 | app:layout_constraintStart_toStartOf="parent" |
28 | app:layout_constraintTop_toTopOf="parent" /> | 28 | app:layout_constraintTop_toTopOf="parent" /> |
... | @@ -31,9 +31,9 @@ | ... | @@ -31,9 +31,9 @@ |
31 | android:id="@+id/textView3" | 31 | android:id="@+id/textView3" |
32 | android:layout_width="wrap_content" | 32 | android:layout_width="wrap_content" |
33 | android:layout_height="wrap_content" | 33 | android:layout_height="wrap_content" |
34 | + android:contentDescription="@string/cos_market_Pass_info_title" | ||
34 | android:gravity="center" | 35 | android:gravity="center" |
35 | android:text="@string/cos_market_Pass_info_title" | 36 | android:text="@string/cos_market_Pass_info_title" |
36 | - android:contentDescription="@string/cos_market_Pass_info_title" | ||
37 | android:textColor="@color/cos_light_black" | 37 | android:textColor="@color/cos_light_black" |
38 | android:textSize="19sp" | 38 | android:textSize="19sp" |
39 | app:layout_constraintBottom_toBottomOf="parent" | 39 | app:layout_constraintBottom_toBottomOf="parent" |
... | @@ -45,11 +45,11 @@ | ... | @@ -45,11 +45,11 @@ |
45 | <ScrollView | 45 | <ScrollView |
46 | android:layout_width="match_parent" | 46 | android:layout_width="match_parent" |
47 | android:layout_height="0dp" | 47 | android:layout_height="0dp" |
48 | + android:scrollbars="none" | ||
48 | app:layout_constraintBottom_toBottomOf="parent" | 49 | app:layout_constraintBottom_toBottomOf="parent" |
49 | app:layout_constraintEnd_toEndOf="parent" | 50 | app:layout_constraintEnd_toEndOf="parent" |
50 | app:layout_constraintStart_toStartOf="parent" | 51 | app:layout_constraintStart_toStartOf="parent" |
51 | - app:layout_constraintTop_toBottomOf="@+id/cl_bill_header" | 52 | + app:layout_constraintTop_toBottomOf="@+id/cl_bill_header"> |
52 | - android:scrollbars="none"> | ||
53 | 53 | ||
54 | <RelativeLayout | 54 | <RelativeLayout |
55 | android:layout_width="match_parent" | 55 | android:layout_width="match_parent" |
... | @@ -89,6 +89,34 @@ | ... | @@ -89,6 +89,34 @@ |
89 | <ImageView | 89 | <ImageView |
90 | android:layout_width="38dp" | 90 | android:layout_width="38dp" |
91 | android:layout_height="38dp" | 91 | android:layout_height="38dp" |
92 | + android:src="@drawable/ic_pass_info_basket_product" /> | ||
93 | + | ||
94 | + <LinearLayout | ||
95 | + android:layout_width="match_parent" | ||
96 | + android:layout_height="wrap_content" | ||
97 | + android:orientation="vertical" | ||
98 | + android:paddingHorizontal="10dp"> | ||
99 | + | ||
100 | + <TextView | ||
101 | + android:id="@+id/tv_pass_info_basket_product_title" | ||
102 | + android:layout_width="wrap_content" | ||
103 | + android:layout_height="wrap_content" | ||
104 | + android:letterSpacing="0.028" | ||
105 | + android:text="@string/cos_market_basket_product_title" | ||
106 | + android:textColor="@color/cos_light_black" | ||
107 | + android:textSize="19sp" /> | ||
108 | + </LinearLayout> | ||
109 | + </LinearLayout> | ||
110 | + | ||
111 | + <LinearLayout | ||
112 | + android:layout_width="match_parent" | ||
113 | + android:layout_height="wrap_content" | ||
114 | + android:layout_marginTop="32dp" | ||
115 | + android:orientation="horizontal"> | ||
116 | + | ||
117 | + <ImageView | ||
118 | + android:layout_width="38dp" | ||
119 | + android:layout_height="38dp" | ||
92 | android:src="@drawable/ic_pass_info_basket" /> | 120 | android:src="@drawable/ic_pass_info_basket" /> |
93 | 121 | ||
94 | <LinearLayout | 122 | <LinearLayout | ... | ... |
... | @@ -184,15 +184,16 @@ | ... | @@ -184,15 +184,16 @@ |
184 | <string name="cos_market_Pass_info_title">Οδηγίες χρήσης</string> | 184 | <string name="cos_market_Pass_info_title">Οδηγίες χρήσης</string> |
185 | <string name="cos_market_pass_info_header">Πως λειτουργεί:</string> | 185 | <string name="cos_market_pass_info_header">Πως λειτουργεί:</string> |
186 | <string name="cos_market_basket_title">Εξαργύρωση σε φυσικά καταστήματα</string> | 186 | <string name="cos_market_basket_title">Εξαργύρωση σε φυσικά καταστήματα</string> |
187 | + <string name="cos_market_basket_product_title">Επιλογή προϊόντων με εκπτωτικό κουπόνι SUPERMARKET DEALS για τις αγορές σου.</string> | ||
187 | <string name="cos_market_basket_subtitle">Σκάναρε το barcode από το κινητό σου στο ταμείο του καταστήματος και κέρδισε απευθείας έκπτωση από τα διαθέσιμα κουπόνια.</string> | 188 | <string name="cos_market_basket_subtitle">Σκάναρε το barcode από το κινητό σου στο ταμείο του καταστήματος και κέρδισε απευθείας έκπτωση από τα διαθέσιμα κουπόνια.</string> |
188 | <string name="cos_market_eshop_title">Εξαργύρωση στο eshop</string> | 189 | <string name="cos_market_eshop_title">Εξαργύρωση στο eshop</string> |
189 | <string name="cos_market_eshop_subtitle">Πληκτρολόγησε τον κωδικό σου στο αντίστοιχο πεδίο κατά το checkout στο eshop και κέρδισε απευθείας έκπτωση από τα διαθέσιμα κουπόνια.</string> | 190 | <string name="cos_market_eshop_subtitle">Πληκτρολόγησε τον κωδικό σου στο αντίστοιχο πεδίο κατά το checkout στο eshop και κέρδισε απευθείας έκπτωση από τα διαθέσιμα κουπόνια.</string> |
190 | <string name="cos_market_ab_title">Ειδικά για τον ΑΒ</string> | 191 | <string name="cos_market_ab_title">Ειδικά για τον ΑΒ</string> |
191 | - <string name="cos_market_ab_subtitle">1. Eνεργοποίησε τον κωδικό στην κάρτα ΑΒ PLUS στο kiosk του καταστήματος ή μέσω eshop / app στην ενοτητα στην ενότητα Συνεργασίες – SUPERMARKET DEALS.\n\n2. Κάνε τις αγορές σου και κέρδισε απευθείας έκπτωση με χρήση της AB PLUS από τα διαθέσιμα κουπόνια.</string> | 192 | + <string name="cos_market_ab_subtitle">1. Eνεργοποίησε τον κωδικό στην κάρτα ΑΒ PLUS στο kiosk του καταστήματος ή μέσω eshop / app στην ενότητα Συνεργασίες – SUPERMARKET DEALS.\n\n2. Κάνε τις αγορές σου και κέρδισε απευθείας έκπτωση με χρήση της AB PLUS από τα διαθέσιμα κουπόνια.</string> |
192 | <string name="cos_market_pass_title">SUPERMARKET DEALS CARD</string> | 193 | <string name="cos_market_pass_title">SUPERMARKET DEALS CARD</string> |
193 | - <string name="cos_market_pass_subtitle">Χρησιμοποίησε τον κωδικό σου και κέρδισε έκπτωση στις αγορές σου!</string> | 194 | + <string name="cos_market_pass_subtitle">Χρησιμοποίησε το μοναδικό κωδικό σου για να κερδίσεις έκπτωση σε επιλεγμένα προϊόντα. Ανακάλυψε τα κουπόνια στο For You.</string> |
194 | <string name="cos_market_pass_return">Επιστροφή</string> | 195 | <string name="cos_market_pass_return">Επιστροφή</string> |
195 | - <string name="cos_market_pass_coupons_title">Έχεις κουπόνια συνολικής αξίας %1$s€</string> | 196 | + <string name="cos_market_pass_coupons_title">Με τα διαθέσιμα κουπόνια μπορείς να εξοικονομήσεις έως και %1$s€.</string> |
196 | <string name="cos_market_subtitle">Δημιούργησε το δικό σου ενιαίο κουπόνι προσφορών, και εξαργύρωσέ το στα supermarket της επιλογής σου γρήγορα και εύκολα με ένα μόνο κωδικό κουπονιού!</string> | 197 | <string name="cos_market_subtitle">Δημιούργησε το δικό σου ενιαίο κουπόνι προσφορών, και εξαργύρωσέ το στα supermarket της επιλογής σου γρήγορα και εύκολα με ένα μόνο κωδικό κουπονιού!</string> |
197 | <string name="cos_market_close">Τέλος</string> | 198 | <string name="cos_market_close">Τέλος</string> |
198 | <string name="cos_rewards_title2">COSMOTE Επιβράβευση</string> | 199 | <string name="cos_rewards_title2">COSMOTE Επιβράβευση</string> | ... | ... |
-
Please register or login to post a comment