Panagiotis Triantafyllou

removed unused references

Showing 311 changed files with 14 additions and 5733 deletions
...@@ -25,9 +25,6 @@ ...@@ -25,9 +25,6 @@
25 android:roundIcon="@mipmap/ic_launcher_round" 25 android:roundIcon="@mipmap/ic_launcher_round"
26 android:requestLegacyExternalStorage="true" 26 android:requestLegacyExternalStorage="true"
27 android:theme="@style/AppTheme"> 27 android:theme="@style/AppTheme">
28 - <meta-data
29 - android:name="com.google.android.geo.API_KEY"
30 - android:value="@string/google_maps_key" />
31 28
32 <activity 29 <activity
33 android:name="warp.ly.android_sdk.activities.SplashActivity" 30 android:name="warp.ly.android_sdk.activities.SplashActivity"
......
...@@ -52,20 +52,15 @@ dependencies { ...@@ -52,20 +52,15 @@ dependencies {
52 //------------------------------ Support -----------------------------// 52 //------------------------------ Support -----------------------------//
53 implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0' 53 implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
54 implementation 'androidx.appcompat:appcompat:1.4.1' 54 implementation 'androidx.appcompat:appcompat:1.4.1'
55 - implementation 'androidx.recyclerview:recyclerview:1.2.1'
56 implementation 'androidx.cardview:cardview:1.0.0' 55 implementation 'androidx.cardview:cardview:1.0.0'
57 api "androidx.security:security-crypto:1.1.0-alpha03" 56 api "androidx.security:security-crypto:1.1.0-alpha03"
58 // For minSDK 23 use 1.0.0, for minSDK 21 use 1.1.0 that is currently in alpha 57 // For minSDK 23 use 1.0.0, for minSDK 21 use 1.1.0 that is currently in alpha
59 api 'org.altbeacon:android-beacon-library:2.19.3' 58 api 'org.altbeacon:android-beacon-library:2.19.3'
60 - api 'org.jbundle.util.osgi.wrapped:org.jbundle.util.osgi.wrapped.org.apache.http.client:4.1.2'
61 - implementation 'de.hdodenhof:circleimageview:3.1.0'
62 api group: 'io.reactivex.rxjava2', name: 'rxjava', version: '2.2.21' 59 api group: 'io.reactivex.rxjava2', name: 'rxjava', version: '2.2.21'
63 implementation 'com.google.android.material:material:1.5.0' 60 implementation 'com.google.android.material:material:1.5.0'
64 api group: 'com.google.zxing', name: 'core', version: '3.4.1' 61 api group: 'com.google.zxing', name: 'core', version: '3.4.1'
65 api group: 'com.google.zxing', name: 'javase', version: '3.4.1' 62 api group: 'com.google.zxing', name: 'javase', version: '3.4.1'
66 - api 'com.github.siyamed:android-shape-imageview:0.9.3'
67 implementation 'org.greenrobot:eventbus:3.3.1' 63 implementation 'org.greenrobot:eventbus:3.3.1'
68 - api 'org.apmem.tools:layouts:1.10'
69 api 'com.google.guava:guava:30.1-android' 64 api 'com.google.guava:guava:30.1-android'
70 65
71 //------------------------------ Firebase -----------------------------// 66 //------------------------------ Firebase -----------------------------//
...@@ -78,7 +73,6 @@ dependencies { ...@@ -78,7 +73,6 @@ dependencies {
78 api 'com.google.android.gms:play-services-base:18.1.0' 73 api 'com.google.android.gms:play-services-base:18.1.0'
79 implementation 'com.google.android.gms:play-services-location:19.0.1' 74 implementation 'com.google.android.gms:play-services-location:19.0.1'
80 implementation 'com.google.android.gms:play-services-maps:18.0.2' 75 implementation 'com.google.android.gms:play-services-maps:18.0.2'
81 - api 'com.google.maps.android:android-maps-utils:0.5'
82 76
83 //------------------------------ Work Manager -----------------------------// 77 //------------------------------ Work Manager -----------------------------//
84 api 'androidx.work:work-runtime:2.7.1' 78 api 'androidx.work:work-runtime:2.7.1'
......
...@@ -23,8 +23,6 @@ import ly.warp.sdk.R; ...@@ -23,8 +23,6 @@ import ly.warp.sdk.R;
23 import ly.warp.sdk.db.WarplyDBHelper; 23 import ly.warp.sdk.db.WarplyDBHelper;
24 import ly.warp.sdk.io.callbacks.CallbackReceiver; 24 import ly.warp.sdk.io.callbacks.CallbackReceiver;
25 import ly.warp.sdk.io.models.Campaign; 25 import ly.warp.sdk.io.models.Campaign;
26 -import ly.warp.sdk.utils.WarpJSONParser;
27 -import ly.warp.sdk.utils.WarplyManagerHelper;
28 import ly.warp.sdk.utils.managers.WarplyManager; 26 import ly.warp.sdk.utils.managers.WarplyManager;
29 27
30 public class HomeFragment extends Fragment implements View.OnClickListener, SwipeRefreshLayout.OnRefreshListener { 28 public class HomeFragment extends Fragment implements View.OnClickListener, SwipeRefreshLayout.OnRefreshListener {
......
...@@ -29,7 +29,6 @@ import android.os.Parcel; ...@@ -29,7 +29,6 @@ import android.os.Parcel;
29 import android.os.Parcelable; 29 import android.os.Parcelable;
30 30
31 import com.google.android.gms.maps.model.LatLng; 31 import com.google.android.gms.maps.model.LatLng;
32 -import com.google.maps.android.clustering.ClusterItem;
33 32
34 import org.json.JSONArray; 33 import org.json.JSONArray;
35 import org.json.JSONException; 34 import org.json.JSONException;
...@@ -45,7 +44,7 @@ import ly.warp.sdk.utils.constants.WarpConstants; ...@@ -45,7 +44,7 @@ import ly.warp.sdk.utils.constants.WarpConstants;
45 * Created by Panagiotis Triantafyllou on 07-Dec-21. 44 * Created by Panagiotis Triantafyllou on 07-Dec-21.
46 */ 45 */
47 46
48 -public class Merchant implements Parcelable, Serializable, ClusterItem { 47 +public class Merchant implements Parcelable, Serializable {
49 48
50 private static final long serialVersionUID = -4754964462459705285L; 49 private static final long serialVersionUID = -4754964462459705285L;
51 50
...@@ -820,19 +819,4 @@ public class Merchant implements Parcelable, Serializable, ClusterItem { ...@@ -820,19 +819,4 @@ public class Merchant implements Parcelable, Serializable, ClusterItem {
820 819
821 return listData; 820 return listData;
822 } 821 }
823 -
824 - @Override
825 - public LatLng getPosition() {
826 - return coordinates;
827 - }
828 -
829 - @Override
830 - public String getTitle() {
831 - return null;
832 - }
833 -
834 - @Override
835 - public String getSnippet() {
836 - return null;
837 - }
838 } 822 }
......
1 -<?xml version="1.0" encoding="UTF-8"?>
2 -<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
3 -
4 - <!-- Shadow layer -->
5 -<!-- <item>-->
6 -<!-- <shape android:shape="rectangle">-->
7 -<!-- <solid android:color="#00000000" /> &lt;!&ndash; Transparent color &ndash;&gt;-->
8 -<!-- <corners android:radius="20dp" />-->
9 -<!-- <padding/>-->
10 -<!-- <size android:width="0dp" android:height="0dp"/>-->
11 -<!-- <gradient-->
12 -<!-- android:startColor="#00000091"-->
13 -<!-- android:endColor="#00000000"-->
14 -<!-- android:angle="270"/>-->
15 -<!-- </shape>-->
16 -<!-- </item>-->
17 -
18 - <!-- Background layer -->
19 - <item>
20 - <shape android:shape="rectangle">
21 - <solid android:color="@color/cos_grey2" /> <!-- Background color -->
22 - <corners android:radius="14dp" /> <!-- Rounded corners -->
23 - </shape>
24 - </item>
25 -
26 -</layer-list>
...\ 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="@color/white" />
4 - <stroke
5 - android:width="2dp"
6 - android:color="@color/cos_light_grey4" />
7 - <corners android:radius="16dp" />
8 -</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="#FFFFFF"/>
4 - <stroke android:width="3dp" android:color="#B1BCBE" />
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 -<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
3 - <item>
4 - <shape android:shape="rectangle">
5 - <gradient
6 - android:angle="180"
7 - android:endColor="@color/cos_cyan2"
8 - android:startColor="@color/cos_green7" />
9 - <corners android:radius="4dp" />
10 - </shape>
11 - </item>
12 -
13 - <item
14 - android:bottom="1dp"
15 - android:end="1dp"
16 - android:start="1dp"
17 - android:top="1dp">
18 - <shape android:shape="rectangle">
19 - <solid android:color="@android:color/white" />
20 - <corners android:radius="4dp" />
21 - </shape>
22 - </item>
23 -
24 -</layer-list>
...\ 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="#91E5E6E7"/>
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 -<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 -<shape xmlns:android="http://schemas.android.com/apk/res/android">
3 - <solid android:color="#415564"/>
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 -<shape xmlns:android="http://schemas.android.com/apk/res/android">
3 - <solid android:color="#91E5E6E7"/>
4 - <corners android:topLeftRadius="10dp" android:bottomRightRadius="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 -<shape xmlns:android="http://schemas.android.com/apk/res/android">
3 - <solid android:color="#415564"/>
4 - <corners android:topLeftRadius="4dp"/>
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 -<shape xmlns:android="http://schemas.android.com/apk/res/android">
3 - <solid android:color="#415564"/>
4 - <corners android:bottomRightRadius="4dp"/>
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 -<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="@color/cos_light_grey3"/>
4 - <corners android:radius="16dp"/>
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 -<shape xmlns:android="http://schemas.android.com/apk/res/android">
3 - <solid android:color="#FFFFFF"/>
4 - <stroke android:width="3dp" android:color="#FFFFFF" />
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="#FFFFFF"/>
4 - <stroke android:width="3dp" android:color="#FFFFFF" />
5 - <corners android:radius="4dp"/>
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="#FFFFFF"/>
4 - <stroke android:width="3dp" android:color="#FFFFFF" />
5 - <corners android:radius="14dp"/>
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="@android:color/white"/>
4 - <corners android:bottomRightRadius="4dp"/>
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 -<shape xmlns:android="http://schemas.android.com/apk/res/android">
3 - <solid android:color="#FFFFFF" />
4 - <corners
5 - android:topLeftRadius="12dp"
6 - android:topRightRadius="12dp" />
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="#ffffffff"/>
4 -
5 - <padding
6 - android:left="1dp"
7 - android:top="1dp"
8 - android:right="1dp"
9 - android:bottom="1dp" />
10 -
11 - <corners
12 - android:topLeftRadius="10dp"
13 - android:topRightRadius="10dp"
14 - android:bottomLeftRadius="10dp"
15 - android:bottomRightRadius="10dp" />
16 -</shape>
...\ No newline at end of file ...\ No newline at end of file
1 -<?xml version="1.0" encoding="UTF-8"?>
2 -<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
3 - <item>
4 - <shape android:shape="rectangle">
5 - <gradient
6 - android:angle="180"
7 - android:endColor="@color/cos_cyan2"
8 - android:startColor="@color/cos_green7" />
9 - </shape>
10 - </item>
11 -
12 - <item android:bottom="4dp">
13 - <shape android:shape="rectangle">
14 - <solid android:color="@android:color/white" />
15 - </shape>
16 - </item>
17 -
18 -</layer-list>
...\ No newline at end of file ...\ No newline at end of file
1 -<?xml version="1.0" encoding="UTF-8"?>
2 -<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
3 - <item>
4 - <shape android:shape="rectangle">
5 - <gradient
6 - android:angle="180"
7 - android:endColor="@color/cos_cyan2"
8 - android:startColor="@color/cos_green7" />
9 - </shape>
10 - </item>
11 -
12 - <item android:bottom="2dp">
13 - <shape android:shape="rectangle">
14 - <solid android:color="@android:color/white" />
15 - </shape>
16 - </item>
17 -
18 -</layer-list>
...\ No newline at end of file ...\ No newline at end of file
1 -<?xml version="1.0" encoding="UTF-8"?>
2 -<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
3 - <item>
4 - <shape android:shape="rectangle">
5 - <gradient
6 - android:angle="90"
7 - android:endColor="#C4F187"
8 - android:startColor="#8EF593" />
9 -
10 - </shape>
11 - </item>
12 -
13 - <item android:bottom="4dp">
14 - <shape android:shape="rectangle">
15 - <solid android:color="#F3F3F3" />
16 - </shape>
17 - </item>
18 -
19 -</layer-list>
...\ No newline at end of file ...\ No newline at end of file
1 -<?xml version="1.0" encoding="UTF-8"?>
2 -<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
3 - <item>
4 - <shape android:shape="rectangle">
5 - <gradient
6 - android:angle="90"
7 - android:endColor="@android:color/transparent"
8 - android:startColor="@android:color/transparent" />
9 -
10 - </shape>
11 - </item>
12 -
13 - <item android:bottom="4dp">
14 - <shape android:shape="rectangle">
15 - <solid android:color="#F3F3F3" />
16 - </shape>
17 - </item>
18 -
19 -</layer-list>
...\ No newline at end of file ...\ No newline at end of file
1 -<?xml version="1.0" encoding="UTF-8"?>
2 -<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
3 - <item>
4 - <shape android:shape="rectangle">
5 - <gradient
6 - android:angle="180"
7 - android:endColor="@color/cos_light_blue"
8 - android:startColor="@color/cos_light_blue" />
9 - </shape>
10 - </item>
11 -
12 - <item android:bottom="2dp">
13 - <shape android:shape="rectangle">
14 - <solid android:color="@color/white" />
15 - </shape>
16 - </item>
17 -
18 -</layer-list>
...\ No newline at end of file ...\ No newline at end of file
1 -<?xml version="1.0" encoding="UTF-8"?>
2 -<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
3 - <item>
4 - <shape android:shape="rectangle">
5 - <gradient
6 - android:angle="90"
7 - android:endColor="@android:color/transparent"
8 - android:startColor="@android:color/transparent" />
9 -
10 - </shape>
11 - </item>
12 -
13 - <item android:bottom="4dp">
14 - <shape android:shape="rectangle">
15 - <solid android:color="@android:color/white" />
16 - </shape>
17 - </item>
18 -
19 -</layer-list>
...\ 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 - <solid android:color="@color/cos_grey2"/>
4 - <corners android:radius="7dp"/>
5 -</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 - <size android:width="1dp"/>
4 - <solid android:color="#787878"/>
5 -</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 - <size android:width="1dp"/>
4 - <solid android:color="@color/cos_grey8"/>
5 -</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 - <size android:width="4dp"/>
4 - <solid android:color="#ffffff"/>
5 -</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="#FFFFFF"/>
4 - <stroke android:width="3dp" android:color="#B1BCBE" />
5 - <corners android:radius="1000dp"/>
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 - <stroke
4 - android:width="1.5dp"
5 - android:color="#AFD767" />
6 -
7 - <corners android:radius="10dp" />
8 - <solid android:color="#AFD767" />
9 -</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="@color/white"/>
4 - <stroke android:width="1dp" android:color="@color/cos_green12" />
5 - <corners android:radius="16dp" />
6 -</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="@color/white"/>
4 - <stroke android:width="1dp" android:color="@color/cos_green6_tr" />
5 - <corners android:radius="16dp" />
6 -</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="@color/white"/>
4 - <stroke android:width="1dp" android:color="@color/cos_green12" />
5 - <corners android:radius="12dp" />
6 -</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="@color/white"/>
4 - <stroke android:width="1dp" android:color="@color/cos_green6_tr" />
5 - <corners android:radius="12dp" />
6 -</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="@color/white"/>
4 - <stroke android:width="2dp" android:color="@color/cos_green14" />
5 - <corners android:radius="10dp" />
6 -</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="@color/white"/>
4 - <stroke android:width="2dp" android:color="@color/cos_green14_tr" />
5 - <corners android:radius="10dp" />
6 -</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="@color/white"/>
4 - <stroke android:width="1dp" android:color="@color/cos_grey2" />
5 - <corners android:radius="16dp" />
6 -</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="@color/white"/>
4 - <stroke android:width="1dp" android:color="@color/cos_grey2_tr" />
5 - <corners android:radius="16dp" />
6 -</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 - <stroke
4 - android:width="1.5dp"
5 - android:color="@color/white_tr2" />
6 -
7 - <corners android:radius="1000dp" />
8 -</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="#ffffffff"/>
4 -
5 - <stroke
6 - android:width="1.5dp"
7 - android:color="#3C464F" />
8 -
9 - <padding
10 - android:left="1dp"
11 - android:top="1dp"
12 - android:right="1dp"
13 - android:bottom="1dp" />
14 -
15 - <corners android:radius="1000dp"/>
16 -</shape>
...\ No newline at end of file ...\ No newline at end of file
1 -<?xml version="1.0" encoding="utf-8"?>
2 -<selector xmlns:android="http://schemas.android.com/apk/res/android">
3 - <item android:drawable="@drawable/shape_cos_green_tr2" android:state_pressed="true" />
4 - <item android:drawable="@drawable/shape_cos_green2" android:state_pressed="false" />
5 -</selector>
...\ No newline at end of file ...\ No newline at end of file
1 -<?xml version="1.0" encoding="utf-8"?>
2 -<selector xmlns:android="http://schemas.android.com/apk/res/android">
3 - <item android:drawable="@drawable/shape_cos_green3_tr" android:state_pressed="true" />
4 - <item android:drawable="@drawable/shape_cos_green3" android:state_pressed="false" />
5 -</selector>
...\ No newline at end of file ...\ No newline at end of file
1 -<?xml version="1.0" encoding="utf-8"?>
2 -<selector xmlns:android="http://schemas.android.com/apk/res/android">
3 - <item android:drawable="@drawable/round_border_green2_tr" android:state_pressed="true" />
4 - <item android:drawable="@drawable/round_border_green2" android:state_pressed="false" />
5 -</selector>
...\ No newline at end of file ...\ No newline at end of file
1 -<?xml version="1.0" encoding="utf-8"?>
2 -<selector xmlns:android="http://schemas.android.com/apk/res/android">
3 - <item android:drawable="@drawable/round_border_green3_tr" android:state_pressed="true" />
4 - <item android:drawable="@drawable/round_border_green3" android:state_pressed="false" />
5 -</selector>
...\ No newline at end of file ...\ No newline at end of file
1 -<?xml version="1.0" encoding="utf-8"?>
2 -<selector xmlns:android="http://schemas.android.com/apk/res/android">
3 - <item android:drawable="@drawable/round_border_green4_tr" android:state_pressed="true" />
4 - <item android:drawable="@drawable/round_border_green4" android:state_pressed="false" />
5 -</selector>
...\ No newline at end of file ...\ No newline at end of file
1 -<?xml version="1.0" encoding="utf-8"?>
2 -<selector xmlns:android="http://schemas.android.com/apk/res/android">
3 - <item android:drawable="@drawable/shape_cos_grey2_tr" android:state_pressed="true" />
4 - <item android:drawable="@drawable/shape_cos_grey2" android:state_pressed="false" />
5 -</selector>
...\ No newline at end of file ...\ No newline at end of file
1 -<?xml version="1.0" encoding="utf-8"?>
2 -<selector xmlns:android="http://schemas.android.com/apk/res/android">
3 - <item android:drawable="@drawable/round_border_grey_tr" android:state_pressed="true" />
4 - <item android:drawable="@drawable/round_border_grey" android:state_pressed="false" />
5 -</selector>
...\ No newline at end of file ...\ No newline at end of file
1 -<?xml version="1.0" encoding="utf-8"?>
2 -<selector xmlns:android="http://schemas.android.com/apk/res/android">
3 - <item android:drawable="@drawable/shape_cos_grey2_dark" android:state_pressed="true" />
4 - <item android:drawable="@drawable/shape_cos_grey2_dark" android:state_pressed="false" />
5 -</selector>
...\ No newline at end of file ...\ No newline at end of file
1 -<?xml version="1.0" encoding="utf-8"?>
2 -<selector xmlns:android="http://schemas.android.com/apk/res/android">
3 - <item
4 - android:state_pressed="false"
5 - android:drawable="@drawable/shape_cos_campaign_white" />
6 - <item
7 - android:state_pressed="true"
8 - android:drawable="@drawable/shape_cos_campaign_white_tr" />
9 -</selector>
...\ No newline at end of file ...\ No newline at end of file
1 -<?xml version="1.0" encoding="utf-8"?>
2 -<selector xmlns:android="http://schemas.android.com/apk/res/android">
3 - <item
4 - android:state_pressed="false"
5 - android:drawable="@drawable/shape_cos_white" />
6 - <item
7 - android:state_pressed="true"
8 - android:drawable="@drawable/shape_cos_white_tr" />
9 -</selector>
...\ No newline at end of file ...\ No newline at end of file
1 -<?xml version="1.0" encoding="utf-8"?>
2 -<selector xmlns:android="http://schemas.android.com/apk/res/android">
3 - <item android:state_selected="false">
4 - <layer-list>
5 - <item>
6 - <shape>
7 - <solid android:color="#F5F5F5" />
8 - <corners android:radius="8dp" />
9 - <padding
10 - android:left="5dp"
11 - android:top="5dp"
12 - android:right="5dp"
13 - android:bottom="5dp" />
14 - </shape>
15 - </item>
16 -
17 - <item>
18 - <bitmap android:gravity="center_vertical|right" android:src="@drawable/ic_down" />
19 - </item>
20 - </layer-list>
21 - </item>
22 -
23 - <item android:state_selected="true">
24 - <layer-list>
25 - <item>
26 - <shape>
27 - <solid android:color="#F5F5F5" />
28 - <corners android:radius="8dp" />
29 - </shape>
30 - </item>
31 -
32 - <item>
33 - <bitmap android:gravity="center_vertical|right" android:src="@drawable/ic_up" />
34 - </item>
35 - </layer-list>
36 - </item>
37 -</selector>
...\ 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:radius="16dp" />
5 -
6 - <solid android:color="@android:color/white" />
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:radius="16dp" />
5 -
6 - <solid android:color="@color/white_tr" />
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:radius="4dp" />
5 -
6 - <solid android:color="@color/cos_orange" />
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 -<?xml version="1.0" encoding="utf-8"?>
2 -<shape xmlns:android="http://schemas.android.com/apk/res/android"
3 - android:shape="rectangle">
4 - <gradient
5 - android:startColor="@color/cos_green"
6 - android:endColor="@color/cos_blue"
7 - android:type="linear"/>
8 - <corners
9 - android:radius="4dp"/>
10 -</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 - <gradient
5 - android:startColor="@color/cos_green2"
6 - android:centerColor="@color/green_dark"
7 - android:endColor="@color/cos_blue2"
8 - android:type="linear"/>
9 - <corners
10 - android:radius="9dp"/>
11 -
12 - <stroke android:width="2dp"
13 - android:color="@color/white_tr"/>
14 -</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 - <gradient
5 - android:startColor="@color/cos_green2"
6 - android:centerColor="@color/green_dark"
7 - android:endColor="@color/cos_blue2"
8 - android:type="linear"/>
9 - <corners
10 - android:radius="1000dp"/>
11 -</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 - <gradient
5 - android:startColor="@color/cos_green2"
6 - android:centerColor="@color/green_dark"
7 - android:endColor="@color/cos_blue2"
8 - android:type="linear"/>
9 - <corners
10 - android:topLeftRadius="30dp"/>
11 -</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 - <gradient
5 - android:startColor="@color/cos_blue3"
6 - android:endColor="@color/cos_green8"
7 - android:type="linear"/>
8 - <corners
9 - android:radius="5dp"/>
10 -</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 - <gradient
5 - android:startColor="@color/cos_green9"
6 - android:endColor="@color/cos_skyblue"
7 - android:type="linear"/>
8 - <corners
9 - android:radius="7dp"/>
10 -</shape>
...\ No newline at end of file ...\ No newline at end of file
1 -<?xml version="1.0" encoding="utf-8"?>
2 -<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
3 - <item>
4 - <shape android:shape="rectangle">
5 - <solid android:color="@color/cos_grey10" />
6 - <corners android:radius="7dp" />
7 - </shape>
8 - </item>
9 -
10 - <item
11 - android:bottom="2dp"
12 - android:left="0dp"
13 - android:right="0dp"
14 - android:top="0dp">
15 - <shape android:shape="rectangle">
16 - <gradient
17 - android:endColor="@color/cos_skyblue"
18 - android:startColor="@color/cos_green9"
19 - android:type="linear" />
20 - <corners android:radius="7dp" />
21 - </shape>
22 - </item>
23 -</layer-list>
...\ 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 - <gradient
5 - android:startColor="@color/cos_green3"
6 - android:centerColor="@color/cos_cyan"
7 - android:type="linear"/>
8 -<!-- <corners-->
9 -<!-- android:radius="9dp"/>-->
10 -
11 -<!-- <stroke android:width="2dp"-->
12 -<!-- android:color="@color/white_tr"/>-->
13 -</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:radius="12dp" />
5 -
6 - <solid
7 - android:width="2dp"
8 - android:color="@color/cos_green12" />
9 -</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:radius="10dp" />
5 -
6 - <solid
7 - android:width="2dp"
8 - android:color="@color/cos_green12" />
9 -</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:radius="10dp" />
5 -
6 - <solid
7 - android:width="2dp"
8 - android:color="@color/cos_green6_tr" />
9 -</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:radius="12dp" />
5 -
6 - <solid
7 - android:width="2dp"
8 - android:color="@color/cos_green6_tr" />
9 -</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:radius="11dp" />
5 -
6 - <solid android:color="#F5F5F5" />
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:radius="12dp" />
5 -
6 - <solid
7 - android:width="2dp"
8 - android:color="@color/cos_grey2" />
9 -</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:radius="16dp" />
5 -
6 - <solid
7 - android:width="2dp"
8 - android:color="@color/cos_gray" />
9 -</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:radius="16dp" />
5 -
6 - <solid
7 - android:width="2dp"
8 - android:color="@color/cos_gray_tr" />
9 -</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:radius="12dp" />
5 -
6 - <solid
7 - android:width="2dp"
8 - android:color="@color/cos_grey2_tr" />
9 -</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:radius="11dp" />
5 -
6 - <solid
7 - android:color="@color/grey_tr3" />
8 -</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:radius="5dp" />
5 -
6 - <solid
7 - android:color="@color/cos_grey6" />
8 -</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:radius="8dp" />
5 -
6 - <solid android:color="@color/cos_grey2" />
7 -</shape>
...\ No newline at end of file ...\ No newline at end of file
1 -<?xml version="1.0" encoding="utf-8"?>
2 -<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
3 - <item>
4 - <shape android:shape="rectangle">
5 - <corners android:radius="5dp" />
6 -
7 - <solid android:color="@color/cos_grey_tr" />
8 - </shape>
9 - </item>
10 - <item
11 - android:bottom="7dp"
12 - android:left="7dp"
13 - android:right="7dp"
14 - android:top="7dp">
15 - <shape android:shape="rectangle">
16 - <solid android:color="@color/cos_grey6" />
17 - <corners android:radius="5dp" />
18 - </shape>
19 - </item>
20 -</layer-list>
...\ No newline at end of file ...\ No newline at end of file
1 -<?xml version="1.0" encoding="utf-8"?><!--<shape xmlns:android="http://schemas.android.com/apk/res/android"-->
2 -<!-- android:shape="rectangle">-->
3 -<!-- <corners android:topLeftRadius="30dp" />-->
4 -
5 -<!-- <solid android:color="@color/grey_light" />-->
6 -
7 -<!--&lt;!&ndash; <stroke&ndash;&gt;-->
8 -<!--&lt;!&ndash; android:width="1dp"&ndash;&gt;-->
9 -<!--&lt;!&ndash; android:color="@color/cos_green" />&ndash;&gt;-->
10 -<!--</shape>-->
11 -
12 -
13 -<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
14 - <item>
15 - <shape android:shape="rectangle">
16 - <corners android:topLeftRadius="30dp" />
17 - <gradient
18 - android:angle="180"
19 - android:endColor="@color/cos_cyan2"
20 - android:startColor="@color/cos_green7" />
21 - </shape>
22 - </item>
23 -
24 - <item android:top="4dp">
25 - <shape xmlns:android="http://schemas.android.com/apk/res/android"
26 - android:shape="rectangle">
27 - <corners android:topLeftRadius="30dp" />
28 - <solid android:color="@color/cos_grey5" />
29 -
30 - <!-- <stroke-->
31 - <!-- android:width="1dp"-->
32 - <!-- android:color="@color/cos_green" />-->
33 - </shape>
34 - </item>
35 -
36 -</layer-list>
...\ No newline at end of file ...\ No newline at end of file
1 -<?xml version="1.0" encoding="utf-8"?>
2 -<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
3 - <item>
4 - <shape xmlns:android="http://schemas.android.com/apk/res/android"
5 - android:shape="rectangle">
6 - <corners android:topLeftRadius="30dp" />
7 - <solid android:color="@color/cos_grey5" />
8 - </shape>
9 - </item>
10 -</layer-list>
...\ No newline at end of file ...\ No newline at end of file
1 -<?xml version="1.0" encoding="utf-8"?><!--<shape xmlns:android="http://schemas.android.com/apk/res/android"-->
2 -<!-- android:shape="rectangle">-->
3 -<!-- <corners android:topLeftRadius="30dp" />-->
4 -
5 -<!-- <solid android:color="@color/grey_light" />-->
6 -
7 -<!--&lt;!&ndash; <stroke&ndash;&gt;-->
8 -<!--&lt;!&ndash; android:width="1dp"&ndash;&gt;-->
9 -<!--&lt;!&ndash; android:color="@color/cos_green" />&ndash;&gt;-->
10 -<!--</shape>-->
11 -
12 -
13 -<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
14 - <item>
15 - <shape android:shape="rectangle">
16 - <corners android:topLeftRadius="30dp" />
17 - <gradient
18 - android:angle="180"
19 - android:endColor="@color/cos_cyan2"
20 - android:startColor="@color/cos_green7" />
21 - </shape>
22 - </item>
23 -
24 - <item android:top="4dp">
25 - <shape xmlns:android="http://schemas.android.com/apk/res/android"
26 - android:shape="rectangle">
27 - <corners android:topLeftRadius="30dp" />
28 - <solid android:color="@android:color/white" />
29 -
30 - <!-- <stroke-->
31 - <!-- android:width="1dp"-->
32 - <!-- android:color="@color/cos_green" />-->
33 - </shape>
34 - </item>
35 -
36 -</layer-list>
...\ 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
5 - android:bottomRightRadius="0dp"
6 - android:topLeftRadius="20dp"
7 - android:topRightRadius="45dp"
8 - android:bottomLeftRadius="20dp"/>
9 -
10 - <stroke android:width="1dp" android:color="@color/cos_grey2" />
11 -
12 - <solid android:color="@color/white" />
13 -</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/cos_grey" />
7 -
8 -<!-- <stroke-->
9 -<!-- android:width="1dp"-->
10 -<!-- android:color="@color/cos_green" />-->
11 -</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 - <gradient
7 - android:startColor="@color/skyblue"
8 - android:endColor="@color/cos_green4"
9 - android:type="linear"
10 - android:angle="270"/>
11 -
12 -<!-- <stroke-->
13 -<!-- android:width="1dp"-->
14 -<!-- android:color="@color/cos_green" />-->
15 -</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="19dp" android:bottomRightRadius="19dp" />
5 -
6 - <solid android:color="@color/cos_cyan3" />
7 -
8 -<!-- <stroke-->
9 -<!-- android:width="1dp"-->
10 -<!-- android:color="@color/cos_green" />-->
11 -</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:radius="20dp" />
5 -
6 - <solid android:color="@color/cos_light_grey3" />
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:radius="11dp" />
5 -
6 - <solid android:color="#EEF7FF" />
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 - <stroke
4 - android:width="1.5dp"
5 - android:color="@android:color/transparent" />
6 -
7 - <corners android:radius="19dp" />
8 - <solid android:color="@android:color/transparent" />
9 -</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 - <stroke
4 - android:width="1.5dp"
5 - android:color="@android:color/transparent" />
6 -
7 - <corners
8 - android:topLeftRadius="20dp"
9 - android:topRightRadius="20dp"
10 - android:bottomLeftRadius="20dp"
11 - android:bottomRightRadius="20dp"/>
12 - <solid android:color="@android:color/transparent" />
13 -</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 - <stroke
4 - android:width="1dp"
5 - android:color="@color/cos_dark_blue" />
6 -
7 - <corners
8 - android:topLeftRadius="15dp"
9 - android:topRightRadius="15dp"
10 - android:bottomLeftRadius="15dp"
11 - android:bottomRightRadius="15dp"/>
12 - <solid android:color="@android:color/transparent" />
13 -</shape>
...\ No newline at end of file ...\ No newline at end of file
1 -<?xml version="1.0" encoding="utf-8"?>
2 -<layer-list xmlns:android="http://schemas.android.com/apk/res/android"
3 - android:shape="rectangle">
4 -
5 - <item>
6 - <shape>
7 - <!-- set the shadow color here -->
8 - <stroke
9 - android:width="1.5dp"
10 - android:color="#24000000" />
11 -
12 - <!-- setting the thickness of shadow (positive value will give shadow on that side) -->
13 - <padding
14 - android:bottom="2dp"
15 - android:left="0dp"
16 - android:right="-1dp"
17 - android:top="-1dp" />
18 -
19 - <corners
20 - android:bottomRightRadius="16dp"
21 - android:topLeftRadius="24dp"
22 - android:topRightRadius="16dp" />
23 - </shape>
24 - </item>
25 -
26 - <!-- Background -->
27 - <item>
28 - <shape>
29 - <solid android:color="@color/cos_green_tr" />
30 - <corners
31 - android:bottomRightRadius="16dp"
32 - android:topLeftRadius="24dp"
33 - android:topRightRadius="16dp" />
34 - </shape>
35 - </item>
36 -</layer-list>
...\ 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
5 - android:radius="16dp"/>
6 -
7 - <stroke android:width="1dp" android:color="@color/cos_grey2" />
8 -
9 - <solid android:color="@color/white" />
10 -</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:radius="4dp" />
5 -
6 - <solid android:color="@android:color/white" />
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:radius="16dp" />
5 -<!-- <stroke android:width="1dp" android:color="@color/cos_grey2" />-->
6 - <solid
7 - android:color="@color/white" />
8 -</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 - <stroke
4 - android:width="0.5dp"
5 - android:color="@android:color/white" />
6 -
7 - <corners
8 - android:bottomLeftRadius="19dp"
9 - android:bottomRightRadius="19dp" />
10 -
11 - <solid android:color="@android:color/white" />
12 -</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
5 - android:topLeftRadius="16dp"
6 - android:topRightRadius="16dp" />
7 -
8 - <solid android:color="@color/white" />
9 -</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:radius="8dp" />
5 -
6 - <solid android:color="@color/white_tr" />
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="line">
4 -
5 - <stroke
6 - android:width="1dp"
7 - android:color="@color/cos_gray"
8 - android:dashWidth="32px"
9 - android:dashGap="24px" />
10 -</shape>
...\ No newline at end of file ...\ No newline at end of file
1 -<?xml version="1.0" encoding="utf-8"?>
2 -<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
3 - <item
4 - android:left="-600dp"
5 - android:right="-600dp">
6 - <rotate
7 - android:drawable="@drawable/shape_dashed"
8 - android:fromDegrees="90"
9 - android:visible="true" />
10 - </item>
11 -</layer-list>
...\ No newline at end of file ...\ No newline at end of file
1 -<?xml version="1.0" encoding="utf-8"?>
2 -<shape
3 - xmlns:android="http://schemas.android.com/apk/res/android"
4 - android:shape="oval">
5 -
6 - <solid
7 - android:color="@color/cos_light_blue"/>
8 -
9 - <size
10 - android:width="24dp"
11 - android:height="24dp"/>
12 -</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 - <gradient
5 - android:angle="180"
6 - android:endColor="@color/cos_blue5"
7 - android:startColor="@color/cos_green" />
8 -</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="@color/cos_skyblue4"/>
4 - <corners android:radius="10dp"/>
5 - <padding android:left="4dp" android:top="2dp" android:right="4dp" android:bottom="2dp" />
6 -</shape>
...\ No newline at end of file ...\ No newline at end of file
1 -<?xml version="1.0" encoding="utf-8"?>
2 -<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
3 - <item>
4 - <shape android:shape="oval">
5 - <padding
6 - android:bottom="1dp"
7 - android:left="1dp"
8 - android:right="1dp"
9 - android:top="1dp" />
10 - <gradient
11 - android:angle="180"
12 - android:endColor="@color/cos_blue4"
13 - android:startColor="@color/cos_green10" />
14 - </shape>
15 - </item>
16 -
17 - <item>
18 - <shape xmlns:android="http://schemas.android.com/apk/res/android"
19 - android:shape="oval">
20 - <solid android:color="@android:color/white" />
21 - </shape>
22 - </item>
23 -
24 -</layer-list>
...\ No newline at end of file ...\ No newline at end of file
1 -<?xml version="1.0" encoding="utf-8"?>
2 -<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
3 - <item>
4 - <shape android:shape="rectangle">
5 - <padding
6 - android:bottom="2dp"
7 - android:left="2dp"
8 - android:right="2dp"
9 - android:top="2dp" />
10 - <gradient
11 - android:angle="180"
12 - android:endColor="@color/cos_blue5"
13 - android:startColor="@color/cos_green" />
14 -
15 - <corners android:radius="1000dp" />
16 - </shape>
17 - </item>
18 -
19 - <item>
20 - <shape xmlns:android="http://schemas.android.com/apk/res/android"
21 - android:shape="rectangle">
22 - <solid android:color="@android:color/white" />
23 - <corners android:radius="1000dp" />
24 - </shape>
25 - </item>
26 -
27 -</layer-list>
...\ No newline at end of file ...\ No newline at end of file
1 -<shape xmlns:android="http://schemas.android.com/apk/res/android"
2 - android:shape="rectangle">
3 - <corners android:radius="13dp" />
4 - <solid android:color="@color/cos_skyblue4" />
5 -</shape>
...\ No newline at end of file ...\ No newline at end of file
1 -<shape xmlns:android="http://schemas.android.com/apk/res/android"
2 - android:shape="rectangle">
3 - <corners android:topLeftRadius="16dp" android:bottomRightRadius="16dp" />
4 - <solid android:color="@color/cos_skyblue4" />
5 -</shape>
...\ No newline at end of file ...\ No newline at end of file
1 -<shape xmlns:android="http://schemas.android.com/apk/res/android"
2 - android:shape="rectangle">
3 - <corners android:topLeftRadius="27dp" />
4 - <solid android:color="@android:color/white" />
5 -</shape>
...\ No newline at end of file ...\ No newline at end of file
1 -<vector android:height="21.333334dp" android:viewportHeight="12"
2 - android:viewportWidth="18" android:width="32dp" xmlns:android="http://schemas.android.com/apk/res/android">
3 - <path android:fillColor="#212121" android:fillType="evenOdd" android:pathData="M15.426,0.719L17.4,2.728L9,11.279L0.6,2.728L2.574,0.719L9,7.246L15.426,0.719Z"/>
4 -</vector>
1 -<vector xmlns:android="http://schemas.android.com/apk/res/android"
2 - android:width="32dp"
3 - android:height="32dp"
4 - android:viewportWidth="32"
5 - android:viewportHeight="32">
6 - <path
7 - android:pathData="M5.704,27.89V23.636H1.002V18.815H5.711V4.076H31.054V18.562H30.932L30.524,18.559H26.426V24.337H17.337V27.89H5.704Z"
8 - android:fillColor="#F87A1D"
9 - android:fillType="evenOdd"/>
10 - <path
11 - android:pathData="M11.682,11.773C11.677,11.811 11.703,11.846 11.741,11.851C11.748,11.852 11.754,11.852 11.761,11.851H12.591C12.749,11.857 12.901,11.789 13.001,11.667C13.203,11.424 13.203,11.072 13.001,10.828C12.902,10.704 12.75,10.634 12.591,10.64H11.761C11.708,10.64 11.682,10.667 11.682,10.723V11.773ZM11.682,9.442C11.676,9.479 11.703,9.514 11.74,9.519C11.747,9.52 11.754,9.52 11.761,9.519H12.591C12.73,9.519 12.862,9.462 12.958,9.363C13.06,9.269 13.118,9.137 13.118,8.998C13.119,8.861 13.06,8.731 12.958,8.639C12.861,8.541 12.729,8.486 12.591,8.486H11.761C11.708,8.486 11.682,8.514 11.682,8.569V9.442ZM10.574,12.814V7.527C10.575,7.485 10.593,7.444 10.624,7.415C10.654,7.385 10.694,7.368 10.737,7.367H12.653C12.872,7.365 13.088,7.409 13.288,7.495C13.479,7.579 13.651,7.698 13.797,7.846C13.942,7.996 14.057,8.173 14.134,8.366C14.217,8.568 14.259,8.784 14.257,9.002C14.255,9.192 14.213,9.379 14.135,9.552C14.064,9.724 13.96,9.88 13.827,10.012C13.773,10.064 13.773,10.112 13.827,10.157C13.896,10.218 13.957,10.288 14.006,10.366C14.06,10.449 14.104,10.538 14.14,10.63C14.178,10.729 14.207,10.831 14.227,10.935C14.247,11.039 14.257,11.144 14.257,11.249C14.261,11.491 14.222,11.731 14.142,11.96C14.072,12.164 13.959,12.35 13.81,12.507C13.664,12.658 13.487,12.777 13.291,12.855C13.077,12.939 12.848,12.981 12.618,12.978H10.734C10.692,12.978 10.652,12.96 10.623,12.929C10.592,12.899 10.574,12.858 10.574,12.814Z"
12 - android:fillColor="#2A292E"
13 - android:fillType="evenOdd"/>
14 - <path
15 - android:pathData="M19.351,9.585C19.338,9.773 19.333,9.97 19.333,10.168C19.333,10.367 19.333,10.564 19.348,10.757C19.363,10.95 19.375,11.134 19.4,11.297C19.417,11.47 19.495,11.631 19.619,11.753C19.745,11.879 19.93,11.941 20.176,11.941C20.421,11.941 20.608,11.879 20.735,11.753C20.86,11.632 20.938,11.47 20.957,11.297C20.977,11.132 20.991,10.952 21,10.758C21.008,10.564 21.011,10.369 21.01,10.168C21.009,9.968 21.01,9.776 20.999,9.585C20.988,9.394 20.977,9.214 20.957,9.041C20.939,8.869 20.86,8.708 20.735,8.588C20.609,8.462 20.423,8.4 20.176,8.4C19.972,8.385 19.772,8.453 19.619,8.588C19.496,8.709 19.418,8.869 19.4,9.04C19.378,9.214 19.362,9.396 19.351,9.585ZM18.243,10.757C18.231,10.564 18.226,10.369 18.226,10.168C18.226,9.968 18.231,9.776 18.243,9.586C18.254,9.396 18.27,9.217 18.291,9.045C18.316,8.81 18.38,8.58 18.479,8.365C18.574,8.155 18.705,7.964 18.867,7.8C19.031,7.638 19.225,7.508 19.438,7.417C19.914,7.231 20.443,7.231 20.919,7.417C21.132,7.507 21.327,7.637 21.491,7.8C21.653,7.964 21.784,8.155 21.878,8.365C21.976,8.581 22.039,8.81 22.067,9.045C22.087,9.217 22.101,9.398 22.109,9.586C22.117,9.774 22.12,9.968 22.12,10.168C22.12,10.368 22.117,10.564 22.109,10.756C22.101,10.944 22.087,11.126 22.067,11.293C22.042,11.529 21.978,11.759 21.878,11.974C21.784,12.183 21.652,12.375 21.49,12.538C21.327,12.703 21.133,12.834 20.92,12.924C20.443,13.111 19.914,13.111 19.437,12.924C19.224,12.833 19.03,12.703 18.866,12.538C18.704,12.375 18.572,12.183 18.478,11.974C18.379,11.758 18.315,11.529 18.289,11.293C18.27,11.129 18.254,10.95 18.243,10.757Z"
16 - android:fillColor="#2A292E"
17 - android:fillType="evenOdd"/>
18 - <path
19 - android:pathData="M10.384,21.184L11.562,18.516C11.575,18.49 11.583,18.461 11.586,18.432C11.583,18.399 11.575,18.368 11.562,18.338L10.522,16.022C10.494,15.972 10.494,15.912 10.522,15.863C10.547,15.818 10.595,15.792 10.647,15.794H11.551C11.614,15.794 11.664,15.835 11.703,15.915L12.368,17.575C12.379,17.596 12.392,17.606 12.407,17.606H12.423C12.439,17.606 12.452,17.596 12.463,17.575L13.127,15.915C13.148,15.847 13.209,15.798 13.28,15.794H14.188C14.238,15.793 14.285,15.819 14.311,15.863C14.342,15.911 14.344,15.972 14.317,16.022L13.272,18.345C13.259,18.375 13.252,18.407 13.249,18.44C13.252,18.469 13.26,18.498 13.272,18.525L14.45,21.186C14.462,21.211 14.468,21.239 14.469,21.267C14.47,21.294 14.462,21.32 14.446,21.342C14.421,21.385 14.375,21.411 14.325,21.409H13.378C13.3,21.415 13.229,21.364 13.21,21.288L12.463,19.39C12.452,19.369 12.439,19.358 12.423,19.358H12.407C12.392,19.358 12.379,19.369 12.368,19.39L11.62,21.288C11.601,21.364 11.53,21.415 11.452,21.409H10.511C10.46,21.41 10.412,21.382 10.386,21.338C10.371,21.315 10.362,21.288 10.363,21.261C10.364,21.234 10.371,21.207 10.384,21.184Z"
20 - android:fillColor="#2A292E"
21 - android:fillType="evenOdd"/>
22 - <path
23 - android:pathData="M18.919,19.004V18.202C18.919,18.16 18.936,18.119 18.966,18.089C18.995,18.057 19.036,18.039 19.079,18.04H21.266C21.354,18.043 21.425,18.114 21.427,18.202V19.004C21.427,19.047 21.409,19.087 21.378,19.115C21.349,19.146 21.309,19.163 21.266,19.163H19.079C19.037,19.163 18.997,19.146 18.968,19.115C18.936,19.087 18.919,19.047 18.919,19.004Z"
24 - android:fillColor="#2A292E"
25 - android:fillType="evenOdd"/>
26 - <path
27 - android:pathData="M26.585,17.535V16.183L26.622,16.221L28.328,17.989L28.585,18.256H27.282L27.024,17.989L26.622,17.573L26.585,17.535ZM25.705,23.656H6.43V4.826H25.428V4.829H25.705V23.656ZM6.423,27.139H16.794V24.623H6.423V27.139ZM26.585,13.737L26.622,13.775L30.24,17.525L30.339,17.627V18.256H29.643L29.385,17.989L26.622,15.126L26.585,15.088V13.737ZM26.585,11.291L26.622,11.329L30.24,15.079L30.339,15.181V16.531L30.24,16.428L26.622,12.681L26.585,12.642V11.291ZM26.585,8.845L26.622,8.883L30.24,12.632L30.339,12.735V14.084L30.24,13.982L26.622,10.234L26.585,10.196V8.845ZM26.585,6.398L26.622,6.437L30.24,10.186L30.339,10.288V11.638L30.24,11.536L26.622,7.788L26.585,7.75V6.398ZM26.585,4.74H27.346L27.431,4.829L30.24,7.74L30.339,7.842V9.192L30.24,9.09L26.622,5.341L26.585,5.303V4.74ZM28.404,4.74H29.706L29.791,4.829L30.24,5.294L30.339,5.396V6.745L30.24,6.643L28.49,4.829L28.404,4.74ZM1.813,22.969H5.506V19.276H1.813V22.969ZM26.622,3.909H26.568H5.513V18.359H0.896V23.886H5.506V28.056H17.712V24.574H26.622V18.908H30.24V18.912H31.158V18.908H31.16V3.909H26.622Z"
28 - android:fillColor="#2A292E"
29 - android:fillType="evenOdd"/>
30 -</vector>
1 -<vector xmlns:android="http://schemas.android.com/apk/res/android"
2 - android:width="52dp"
3 - android:height="30dp"
4 - android:viewportWidth="52"
5 - android:viewportHeight="30">
6 - <path
7 - android:pathData="M16.62,5.068C15.091,5.168 13.825,3.845 13.99,2.27C14.113,1.097 15.034,0.151 16.192,0.025C17.737,-0.142 19.036,1.148 18.937,2.706C18.855,3.97 17.853,4.992 16.62,5.068ZM16.595,1.164C15.74,1.081 15.017,1.809 15.108,2.68C15.173,3.325 15.683,3.853 16.316,3.912C17.17,3.995 17.894,3.267 17.803,2.396C17.746,1.759 17.228,1.231 16.595,1.164Z"
8 - android:fillColor="#0EA600"/>
9 - <path
10 - android:pathData="M31.816,5.068C30.287,5.168 29.022,3.845 29.186,2.27C29.309,1.097 30.23,0.151 31.389,0.025C32.934,-0.142 34.232,1.148 34.134,2.706C34.052,3.97 33.049,4.992 31.816,5.068ZM31.791,1.164C30.937,1.081 30.213,1.809 30.304,2.68C30.37,3.325 30.879,3.853 31.512,3.912C32.367,3.995 33.09,3.267 33,2.396C32.942,1.759 32.424,1.231 31.791,1.164Z"
11 - android:fillColor="#0EA600"/>
12 - <path
13 - android:pathData="M35.597,5.034V1.198H34.216V0.05H38.112V1.198H36.723V5.034H35.597Z"
14 - android:fillColor="#0EA600"/>
15 - <path
16 - android:pathData="M27.871,5.034L27.427,2.203L26.31,4.515H25.858L24.756,2.228L24.312,5.034H23.187L23.967,0.05H25.028L26.088,2.379L27.123,0.05H28.216L28.997,5.034H27.871Z"
17 - android:fillColor="#0EA600"/>
18 - <path
19 - android:pathData="M11.787,5.076C10.373,5.076 9.239,3.87 9.305,2.421C9.363,1.206 10.275,0.193 11.45,0.034C12.321,-0.084 13.168,0.268 13.719,0.955L13.801,1.056L12.995,1.876L12.897,1.742C12.543,1.24 11.894,1.022 11.286,1.257C10.858,1.424 10.538,1.818 10.456,2.27C10.275,3.233 11.08,4.063 12.017,3.903C12.379,3.845 12.699,3.619 12.913,3.317L12.995,3.208L13.801,4.029L13.719,4.13C13.242,4.733 12.543,5.076 11.787,5.076Z"
20 - android:fillColor="#0EA600"/>
21 - <path
22 - android:pathData="M40.684,5.076C39.279,5.076 38.136,3.87 38.202,2.421C38.259,1.206 39.172,0.193 40.347,0.034C41.218,-0.084 42.065,0.268 42.615,0.955L42.698,1.056L41.892,1.876L41.794,1.742C41.539,1.382 41.128,1.164 40.684,1.164C40.142,1.164 39.648,1.499 39.435,2.002H41.07V3.066H39.418C39.64,3.644 40.232,4.012 40.865,3.92C41.243,3.87 41.58,3.644 41.802,3.326L41.876,3.217L42.681,4.037L42.599,4.138C42.139,4.733 41.44,5.076 40.684,5.076Z"
23 - android:fillColor="#0EA600"/>
24 - <path
25 - android:pathData="M21.107,5.076C20.063,5.076 19.373,4.314 19.34,4.28L19.25,4.18L19.981,3.434L20.08,3.51C20.162,3.577 20.244,3.635 20.335,3.686C20.606,3.862 20.869,3.954 21.107,3.954C21.502,3.954 21.682,3.736 21.682,3.535C21.682,3.309 21.518,3.15 21.222,3.074L20.713,2.94C19.899,2.739 19.406,2.195 19.406,1.474C19.406,0.578 20.072,0 21.099,0C22.069,0 22.775,0.745 22.8,0.779L22.899,0.88L22.159,1.633L22.06,1.55C21.962,1.457 21.855,1.382 21.756,1.323C21.526,1.181 21.313,1.114 21.107,1.114C20.754,1.114 20.556,1.248 20.556,1.491C20.556,1.608 20.589,1.767 20.91,1.851L21.403,1.977C22.365,2.22 22.825,2.731 22.825,3.535C22.825,4.423 22.102,5.076 21.107,5.076Z"
26 - android:fillColor="#0EA600"/>
27 - <path
28 - android:pathData="M6.578,8.234H10.09C11.009,8.234 11.827,8.433 12.542,8.832C13.265,9.231 13.827,9.787 14.227,10.498C14.636,11.21 14.84,12.017 14.84,12.919C14.84,13.821 14.636,14.628 14.227,15.34C13.827,16.051 13.265,16.607 12.542,17.006C11.827,17.405 11.009,17.604 10.09,17.604H6.578V8.234ZM9.962,15.86C10.533,15.86 11.035,15.739 11.469,15.496C11.912,15.244 12.252,14.897 12.491,14.455C12.738,14.012 12.861,13.5 12.861,12.919C12.861,12.338 12.738,11.826 12.491,11.383C12.252,10.941 11.912,10.598 11.469,10.355C11.035,10.104 10.533,9.978 9.962,9.978H8.57V15.86H9.962Z"
29 - android:fillColor="#00A5E3"/>
30 - <path
31 - android:pathData="M17.427,17.683C16.891,17.683 16.491,17.574 16.227,17.357C15.972,17.132 15.844,16.776 15.844,16.29V9.548C15.844,8.62 16.333,8.156 17.313,8.156C19.211,8.156 20.939,8.182 22.497,8.234V9.913H17.81V12.177H21.756V13.921H17.81V15.925H22.625V17.604C22.182,17.622 21.42,17.639 20.339,17.656C19.266,17.674 18.296,17.683 17.427,17.683Z"
32 - android:fillColor="#00A5E3"/>
33 - <path
34 - android:pathData="M26.308,8.234H28.683L32.105,17.604H30.049L29.232,15.262H25.759L24.941,17.604H22.885L26.308,8.234ZM28.67,13.622L27.496,10.225L26.333,13.622H28.67Z"
35 - android:fillColor="#00A5E3"/>
36 - <path
37 - android:pathData="M34.11,17.683C33.685,17.683 33.331,17.578 33.05,17.37C32.778,17.162 32.642,16.802 32.642,16.29V8.234H34.634V15.913H38.491V17.604C38.159,17.622 37.571,17.639 36.728,17.656C35.885,17.674 35.013,17.683 34.11,17.683Z"
38 - android:fillColor="#00A5E3"/>
39 - <path
40 - android:pathData="M42.37,17.683C41.621,17.683 40.969,17.544 40.416,17.266C39.863,16.988 39.433,16.598 39.126,16.095C38.828,15.583 38.679,14.993 38.679,14.325H40.633C40.633,14.828 40.799,15.227 41.131,15.522C41.463,15.817 41.919,15.965 42.498,15.965C42.915,15.965 43.242,15.878 43.481,15.704C43.719,15.531 43.838,15.296 43.838,15.001C43.838,14.706 43.698,14.468 43.417,14.286C43.136,14.095 42.655,13.925 41.974,13.778C41.233,13.613 40.646,13.418 40.212,13.192C39.778,12.958 39.463,12.672 39.267,12.333C39.071,11.986 38.973,11.561 38.973,11.058C38.973,10.476 39.105,9.969 39.369,9.535C39.641,9.093 40.024,8.754 40.518,8.52C41.012,8.277 41.587,8.156 42.242,8.156C42.915,8.156 43.506,8.286 44.017,8.546C44.536,8.806 44.937,9.171 45.217,9.639C45.507,10.099 45.652,10.633 45.652,11.24H43.711C43.711,10.841 43.57,10.516 43.289,10.264C43.017,10.004 42.659,9.874 42.217,9.874C41.817,9.874 41.489,9.973 41.233,10.173C40.978,10.364 40.85,10.615 40.85,10.928C40.85,11.205 40.986,11.435 41.259,11.618C41.54,11.791 42.025,11.952 42.715,12.099C43.481,12.264 44.085,12.464 44.528,12.698C44.971,12.923 45.29,13.205 45.486,13.544C45.681,13.873 45.779,14.29 45.779,14.793C45.779,15.366 45.639,15.873 45.358,16.316C45.077,16.75 44.677,17.088 44.158,17.331C43.647,17.565 43.051,17.683 42.37,17.683Z"
41 - android:fillColor="#00A5E3"/>
42 - <path
43 - android:pathData="M0,21.866C0,20.937 0.49,20.473 1.469,20.473C3.273,20.473 4.955,20.499 6.513,20.551V22.23H1.992V24.495H5.67V26.239H1.992V29.922H0V21.866Z"
44 - android:fillColor="#00A5E3"/>
45 - <path
46 - android:pathData="M11.451,30C10.54,30 9.719,29.796 8.987,29.388C8.263,28.972 7.693,28.403 7.275,27.683C6.867,26.955 6.663,26.139 6.663,25.236C6.663,24.334 6.867,23.523 7.275,22.803C7.693,22.074 8.263,21.506 8.987,21.098C9.719,20.681 10.54,20.473 11.451,20.473C12.362,20.473 13.179,20.681 13.903,21.098C14.635,21.506 15.206,22.074 15.614,22.803C16.031,23.523 16.24,24.334 16.24,25.236C16.24,26.139 16.031,26.955 15.614,27.683C15.206,28.403 14.635,28.972 13.903,29.388C13.179,29.796 12.362,30 11.451,30ZM8.642,25.236C8.642,25.818 8.761,26.334 8.999,26.785C9.238,27.236 9.57,27.592 9.995,27.853C10.421,28.104 10.906,28.23 11.451,28.23C11.996,28.23 12.481,28.104 12.907,27.853C13.333,27.592 13.665,27.236 13.903,26.785C14.141,26.334 14.261,25.818 14.261,25.236C14.261,24.655 14.141,24.139 13.903,23.688C13.665,23.237 13.333,22.885 12.907,22.633C12.481,22.373 11.996,22.243 11.451,22.243C10.906,22.243 10.421,22.373 9.995,22.633C9.57,22.885 9.238,23.237 8.999,23.688C8.761,24.139 8.642,24.655 8.642,25.236Z"
47 - android:fillColor="#00A5E3"/>
48 - <path
49 - android:pathData="M17.247,20.551H20.759C21.78,20.551 22.589,20.82 23.185,21.358C23.789,21.887 24.091,22.616 24.091,23.545C24.091,24.048 23.998,24.49 23.811,24.872C23.623,25.254 23.338,25.545 22.955,25.744C23.406,25.987 23.717,26.308 23.887,26.707C24.058,27.098 24.143,27.584 24.143,28.165C24.143,28.764 24.083,29.349 23.964,29.922H22.15V26.72H19.213V29.922H17.247V20.551ZM20.708,25.002C21.176,25.002 21.533,24.885 21.78,24.651C22.036,24.417 22.163,24.078 22.163,23.636C22.163,23.193 22.036,22.855 21.78,22.621C21.533,22.386 21.176,22.269 20.708,22.269H19.213V25.002H20.708Z"
50 - android:fillColor="#00A5E3"/>
51 - <path
52 - android:pathData="M29.623,26.226L26.545,20.551H28.665L30.606,24.286L32.585,20.551H34.693L31.615,26.226V29.922H29.623V26.226Z"
53 - android:fillColor="#00A5E3"/>
54 - <path
55 - android:pathData="M38.862,30C37.951,30 37.129,29.796 36.397,29.388C35.673,28.972 35.103,28.403 34.686,27.683C34.277,26.955 34.073,26.139 34.073,25.236C34.073,24.334 34.277,23.523 34.686,22.803C35.103,22.074 35.673,21.506 36.397,21.098C37.129,20.681 37.951,20.473 38.862,20.473C39.773,20.473 40.59,20.681 41.313,21.098C42.046,21.506 42.616,22.074 43.025,22.803C43.442,23.523 43.65,24.334 43.65,25.236C43.65,26.139 43.442,26.955 43.025,27.683C42.616,28.403 42.046,28.972 41.313,29.388C40.59,29.796 39.773,30 38.862,30ZM36.052,25.236C36.052,25.818 36.172,26.334 36.41,26.785C36.648,27.236 36.98,27.592 37.406,27.853C37.832,28.104 38.317,28.23 38.862,28.23C39.407,28.23 39.892,28.104 40.317,27.853C40.743,27.592 41.075,27.236 41.313,26.785C41.552,26.334 41.671,25.818 41.671,25.236C41.671,24.655 41.552,24.139 41.313,23.688C41.075,23.237 40.743,22.885 40.317,22.633C39.892,22.373 39.407,22.243 38.862,22.243C38.317,22.243 37.832,22.373 37.406,22.633C36.98,22.885 36.648,23.237 36.41,23.688C36.172,24.139 36.052,24.655 36.052,25.236Z"
56 - android:fillColor="#00A5E3"/>
57 - <path
58 - android:pathData="M48.271,30C47.096,30 46.181,29.675 45.526,29.024C44.879,28.373 44.555,27.449 44.555,26.252V20.551H46.547V26.069C46.547,27.51 47.122,28.23 48.271,28.23C48.842,28.23 49.271,28.052 49.561,27.696C49.859,27.332 50.008,26.79 50.008,26.069V20.551H52V26.252C52,27.449 51.672,28.373 51.017,29.024C50.361,29.675 49.446,30 48.271,30Z"
59 - android:fillColor="#00A5E3"/>
60 -</vector>
1 -<vector xmlns:android="http://schemas.android.com/apk/res/android"
2 - android:width="32dp"
3 - android:height="32dp"
4 - android:viewportWidth="32"
5 - android:viewportHeight="32">
6 - <path
7 - android:pathData="M23.437,30.397C23.483,30.397 23.52,30.36 23.52,30.314L23.518,20.797L22.092,20.814L15.673,29.083L14.246,29.083L7.827,20.814L6.4,20.797L6.4,30.314C6.4,30.36 6.437,30.396 6.483,30.396L23.437,30.397ZM7.827,28.754L7.827,20.814L14.246,29.083H8.183C7.987,29.083 7.827,28.936 7.827,28.754ZM21.736,29.083L15.673,29.083L22.092,20.814V28.753C22.092,28.936 21.932,29.083 21.736,29.083Z"
8 - android:fillColor="#00A5E3"
9 - android:fillType="evenOdd"/>
10 - <path
11 - android:pathData="M23.37,20.631L24.439,21.697C24.471,21.729 24.523,21.729 24.555,21.697L28.657,17.594C28.689,17.563 28.689,17.511 28.657,17.479L25.096,13.905C25.991,13.994 26.792,13.752 27.339,13.205C28.35,12.194 28.254,10.513 27.122,9.38C25.934,8.193 24.447,8.326 23.197,8.803C23.675,7.555 23.808,6.067 22.62,4.879C21.487,3.746 19.806,3.651 18.795,4.662C18.248,5.21 18.006,6.009 18.095,6.905L14.524,3.333C14.492,3.301 14.44,3.301 14.408,3.333L10.303,7.445C10.271,7.477 10.271,7.529 10.303,7.561L11.368,8.63L23.37,20.631ZM26.566,17.687L24.639,19.613C24.512,19.741 24.296,19.732 24.158,19.594L18.782,14.219L21.171,11.83L26.547,17.206C26.685,17.343 26.694,17.559 26.566,17.687ZM26.197,10.305C26.836,10.944 26.77,11.773 26.338,12.205C25.995,12.548 25.444,12.651 24.786,12.497C24.222,12.364 23.339,11.984 22.179,10.956C23.14,10.284 25.076,9.185 26.197,10.305ZM21.695,5.804C22.816,6.925 21.716,8.86 21.044,9.82C20.017,8.661 19.637,7.779 19.504,7.214C19.348,6.556 19.452,6.005 19.795,5.662C20.227,5.231 21.056,5.165 21.695,5.804ZM12.387,7.361L14.314,5.435C14.441,5.307 14.657,5.316 14.795,5.454L20.171,10.83L17.783,13.218L12.406,7.842C12.269,7.704 12.26,7.489 12.387,7.361Z"
12 - android:fillColor="#00A5E3"
13 - android:fillType="evenOdd"/>
14 - <path
15 - android:pathData="M14.96,25.602L14.345,25.049C12.162,23.095 10.72,21.806 10.72,20.224C10.72,18.935 11.746,17.922 13.052,17.922C13.79,17.922 14.498,18.261 14.96,18.797C15.422,18.261 16.131,17.922 16.868,17.922C18.174,17.922 19.2,18.935 19.2,20.224C19.2,21.806 17.759,23.095 15.575,25.054L14.96,25.602Z"
16 - android:fillColor="#00A5E3"
17 - android:fillType="evenOdd"/>
18 -</vector>
1 -<vector android:height="32dp" android:viewportHeight="16"
2 - android:viewportWidth="16" android:width="32dp" xmlns:android="http://schemas.android.com/apk/res/android">
3 - <path android:fillColor="#0EA600" android:fillType="evenOdd" android:pathData="M0.227,6.932H1.81C2.307,3.381 5.277,0.641 8.864,0.641C12.799,0.641 16,3.934 16,7.98C16,12.027 12.799,15.32 8.864,15.32C6.652,15.32 4.602,14.29 3.238,12.495L4.041,11.85C5.21,13.389 6.968,14.271 8.864,14.271C12.237,14.271 14.981,11.449 14.981,7.98C14.981,4.511 12.237,1.689 8.864,1.689C5.84,1.689 3.328,3.961 2.84,6.932H4.25C4.309,6.932 4.366,6.955 4.408,6.996C4.498,7.083 4.5,7.227 4.412,7.317L2.238,9.553L0.064,7.317C0.023,7.274 0,7.218 0,7.159C0,7.033 0.102,6.932 0.227,6.932ZM7.831,8.336L7.832,5.336C7.833,5.223 7.924,5.132 8.036,5.132H8.545L8.545,5.132C8.657,5.132 8.748,5.223 8.748,5.336L8.747,8.147L10.761,10.16H10.761C10.841,10.24 10.841,10.369 10.761,10.448L10.402,10.808C10.322,10.887 10.193,10.887 10.113,10.808L7.965,8.66C7.879,8.574 7.831,8.458 7.831,8.336Z"/>
4 -</vector>
1 -<vector android:height="34.133335dp" android:viewportHeight="16"
2 - android:viewportWidth="15" android:width="32dp" xmlns:android="http://schemas.android.com/apk/res/android">
3 - <path android:fillColor="#0EA600" android:fillType="evenOdd" android:pathData="M8.722,6.775V1.028C8.722,0.827 8.562,0.664 8.382,0.664H6.617C6.43,0.664 6.278,0.815 6.278,1.028V6.775H0.53C0.329,6.775 0.167,6.936 0.167,7.115V8.88C0.167,9.067 0.318,9.22 0.53,9.22H6.278V14.967C6.278,15.168 6.438,15.331 6.617,15.331H8.382C8.57,15.331 8.722,15.18 8.722,14.967V9.22H14.469C14.67,9.22 14.833,9.059 14.833,8.88V7.115C14.833,6.927 14.682,6.775 14.469,6.775H8.722Z"/>
4 -</vector>
1 -<vector android:height="64dp" android:viewportHeight="32"
2 - android:viewportWidth="32" android:width="64dp" xmlns:android="http://schemas.android.com/apk/res/android">
3 - <path android:fillColor="#00A5E3" android:fillType="evenOdd" android:pathData="M12.667,10.333C10.754,10.333 9.267,11.821 9.267,13.729C9.267,14.911 9.79,16.062 10.915,17.437C12.053,18.826 13.698,20.319 15.778,22.204L15.78,22.205C16.058,22.458 16.482,22.458 16.756,22.212C18.835,20.323 20.48,18.828 21.618,17.438C22.744,16.062 23.267,14.911 23.267,13.729C23.267,11.821 21.779,10.333 19.867,10.333C18.777,10.333 17.716,10.845 17.028,11.653L16.267,12.545L15.506,11.653C14.817,10.845 13.756,10.333 12.667,10.333ZM18.097,23.695C17.054,24.636 15.468,24.625 14.434,23.685L14.375,23.632C12.361,21.806 10.608,20.219 9.368,18.704C8.104,17.16 7.267,15.569 7.267,13.729C7.267,10.714 9.651,8.333 12.667,8.333C13.993,8.333 15.269,8.813 16.267,9.616C17.264,8.813 18.54,8.333 19.867,8.333C22.882,8.333 25.267,10.714 25.267,13.729C25.267,15.569 24.43,17.16 23.166,18.705C21.929,20.216 20.185,21.8 18.179,23.621L18.099,23.693L18.097,23.695Z"/>
4 - <path android:fillColor="#00A5E3" android:pathData="M30,16C30,23.732 23.732,30 16,30V32C24.837,32 32,24.837 32,16H30Z"/>
5 - <path android:fillColor="#00A5E3" android:pathData="M0,16H2C2,8.268 8.268,2 16,2V0C7.163,0 0,7.163 0,16Z"/>
6 -</vector>
1 -<vector xmlns:android="http://schemas.android.com/apk/res/android"
2 - android:width="32dp"
3 - android:height="32dp"
4 - android:viewportWidth="32"
5 - android:viewportHeight="32">
6 - <path
7 - android:pathData="M8.939,21.363H9.957L27.313,21.363C27.732,21.363 28.101,21.105 28.221,20.729L31.961,8.984C32.046,8.716 31.991,8.425 31.812,8.201C31.633,7.976 31.351,7.844 31.052,7.844L6.924,7.844L5.649,3.837C5.529,3.461 5.159,3.203 4.74,3.203L0.948,3.203C0.425,3.203 0,3.6 0,4.09C0,4.58 0.425,4.977 0.948,4.977H4.033L5.303,8.965C5.307,8.978 5.311,8.991 5.315,9.004L8.688,19.598C6.763,19.719 5.236,21.222 5.236,23.053C5.236,24.963 6.897,26.517 8.939,26.517H9.88C10.291,27.836 11.595,28.803 13.136,28.803C14.677,28.803 15.981,27.836 16.392,26.517H21.422C21.834,27.836 23.137,28.803 24.678,28.803C26.22,28.803 27.523,27.836 27.934,26.517H29.156C29.679,26.517 30.104,26.12 30.104,25.63C30.104,25.14 29.679,24.743 29.156,24.743H27.934C27.523,23.424 26.22,22.457 24.678,22.457C23.137,22.457 21.833,23.424 21.422,24.743H16.392C15.981,23.424 14.677,22.457 13.136,22.457C11.595,22.457 10.291,23.424 9.88,24.743H8.939C7.942,24.743 7.132,23.985 7.132,23.053C7.132,22.121 7.943,21.363 8.939,21.363ZM22.847,9.618H29.781L28.476,13.716H22.847V9.618ZM22.847,15.49H27.911L26.606,19.589H22.847L22.847,15.49ZM15.832,9.618L20.951,9.618V13.716H15.832L15.832,9.618ZM15.832,15.49H20.951L20.951,19.589H15.832V15.49ZM13.936,19.589H10.664L9.359,15.49H13.936V19.589ZM7.489,9.618L13.936,9.618L13.936,13.716H8.794L7.489,9.618ZM24.64,24.003C25.522,24.003 26.24,24.721 26.24,25.603C26.24,26.485 25.522,27.203 24.64,27.203C23.758,27.203 23.04,26.485 23.04,25.603C23.04,24.721 23.758,24.003 24.64,24.003ZM13.12,24.003C14.002,24.003 14.72,24.721 14.72,25.603C14.72,26.485 14.002,27.203 13.12,27.203C12.238,27.203 11.52,26.485 11.52,25.603C11.52,24.721 12.238,24.003 13.12,24.003Z"
8 - android:fillColor="#00A5E3"
9 - android:fillType="evenOdd"/>
10 -</vector>
1 -<vector android:height="28.8dp" android:viewportHeight="18"
2 - android:viewportWidth="20" android:width="32dp" xmlns:android="http://schemas.android.com/apk/res/android">
3 - <path android:fillColor="@color/cos_skyblue6" android:fillType="evenOdd" android:pathData="M18.329,0C19.247,0.004 19.99,0.776 19.993,1.729C19.993,2.262 19.998,2.685 20,3.027L20,3.401C19.994,4.193 19.938,4.449 19.654,4.841C20.067,5.408 19.993,5.609 19.993,7.953C19.99,8.328 19.871,8.692 19.654,8.991C19.871,9.29 19.99,9.653 19.993,10.028C19.993,10.561 19.998,10.984 20,11.326L20,11.7C19.994,12.492 19.938,12.748 19.654,13.14C20.067,13.707 19.993,13.908 19.993,16.252C19.993,17.207 19.248,17.981 18.329,17.981C18.182,17.981 18.037,17.981 17.896,17.981L17.077,17.983C15.373,17.986 14.111,17.997 13.165,18L12.38,18C10.856,17.995 10.447,17.944 10.151,17.74L10.085,17.69C10.063,17.672 10.041,17.654 10.019,17.634L9.952,17.572L9.881,17.504C6.902,18.658 3.546,17.683 1.576,15.091C-0.395,12.498 -0.53,8.881 1.242,6.138C3.013,3.395 6.286,2.153 9.342,3.064V1.729C9.342,0.774 10.087,0 11.006,0H18.329ZM7.345,4.15C4.036,4.15 1.354,6.936 1.354,10.374C1.354,12.025 1.985,13.608 3.109,14.775C4.232,15.942 5.756,16.598 7.345,16.598C10.654,16.598 13.336,13.811 13.336,10.374C13.336,6.936 10.654,4.15 7.345,4.15ZM18.329,13.832H13.862C13.314,14.935 12.517,15.884 11.539,16.598H18.329C18.511,16.594 18.658,16.442 18.662,16.252V14.177C18.658,13.988 18.511,13.835 18.329,13.832ZM18.329,9.682H14.668C14.745,10.615 14.648,11.554 14.382,12.448H18.329C18.511,12.445 18.658,12.292 18.662,12.103V10.028C18.658,9.839 18.511,9.686 18.329,9.682ZM18.316,5.533H12.99C13.633,6.345 14.107,7.287 14.382,8.299H18.329C18.511,8.295 18.658,8.143 18.662,7.953V5.878C18.66,5.785 18.623,5.696 18.558,5.631C18.493,5.566 18.406,5.531 18.316,5.533ZM18.329,1.383H11.006C10.824,1.387 10.677,1.54 10.674,1.729V3.603C11.959,4.29 10.352,4.166 17.101,4.151L17.901,4.15L18.329,4.15C18.511,4.146 18.658,3.993 18.662,3.804C18.662,1.75 18.768,1.383 18.329,1.383Z"/>
4 - <path android:fillColor="@color/cos_skyblue6" android:pathData="M7.934,14C6.983,14 6.172,13.767 5.501,13.3C4.829,12.834 4.358,12.219 4.086,11.454H3V10.361H3.849C3.841,10.281 3.837,10.16 3.837,10C3.837,9.847 3.841,9.734 3.849,9.661H3V8.568H4.075C4.347,7.796 4.818,7.177 5.489,6.71C6.161,6.237 6.972,6 7.922,6C8.601,6 9.201,6.109 9.721,6.328C10.242,6.539 10.664,6.842 10.989,7.235L9.891,8.372C9.65,8.058 9.348,7.825 8.986,7.672C8.631,7.519 8.254,7.443 7.854,7.443C7.417,7.443 7.025,7.545 6.678,7.749C6.338,7.945 6.07,8.219 5.874,8.568H8.612V9.661H5.535C5.527,9.734 5.523,9.847 5.523,10C5.523,10.08 5.531,10.2 5.546,10.361H8.612V11.454H5.885C6.089,11.803 6.361,12.076 6.7,12.273C7.04,12.463 7.428,12.557 7.866,12.557C8.265,12.557 8.643,12.481 8.997,12.328C9.359,12.175 9.661,11.942 9.902,11.628L11,12.765C10.676,13.158 10.253,13.465 9.733,13.683C9.212,13.894 8.612,14 7.934,14Z"/>
5 -</vector>
1 -<vector android:height="29.866667dp" android:viewportHeight="28"
2 - android:viewportWidth="30" android:width="32dp" xmlns:android="http://schemas.android.com/apk/res/android">
3 - <path android:fillColor="#848484" android:fillType="evenOdd" android:pathData="M27.494,0.5C28.87,0.506 29.985,1.663 29.99,3.093C29.99,3.894 29.997,4.528 30,5.041L30,5.602C29.991,6.789 29.907,7.174 29.481,7.762C30.1,8.612 29.99,8.913 29.99,12.43C29.985,12.992 29.806,13.537 29.481,13.986C29.806,14.435 29.985,14.98 29.99,15.542C29.99,16.342 29.997,16.976 30,17.489L30,18.05C29.991,19.237 29.907,19.622 29.481,20.21C30.1,21.061 29.99,21.362 29.99,24.878C29.99,26.311 28.872,27.472 27.494,27.472C27.273,27.472 27.056,27.472 26.843,27.472L25.615,27.474C23.059,27.479 21.166,27.495 19.748,27.499L18.569,27.5C16.284,27.492 15.67,27.417 15.227,27.11L15.127,27.035C15.094,27.008 15.062,26.98 15.029,26.951L14.929,26.858L14.822,26.756C10.353,28.487 5.32,27.025 2.364,23.136C-0.592,19.248 -0.795,13.822 1.862,9.707C4.519,5.592 9.429,3.729 14.013,5.096V3.093C14.013,1.661 15.131,0.5 16.51,0.5H27.494ZM11.018,6.724C6.054,6.724 2.031,10.904 2.031,16.061C2.031,18.537 2.978,20.912 4.663,22.663C6.348,24.413 8.634,25.397 11.018,25.397C15.981,25.397 20.005,21.217 20.005,16.061C20.005,10.904 15.981,6.724 11.018,6.724ZM27.494,21.248H20.793C19.971,22.903 18.775,24.326 17.309,25.397H27.494C27.767,25.392 27.988,25.163 27.993,24.878V21.766C27.988,21.482 27.767,21.253 27.494,21.248ZM27.494,15.023H22.002C22.118,16.422 21.972,17.831 21.572,19.173H27.494C27.767,19.167 27.988,18.938 27.993,18.654V15.542C27.988,15.258 27.767,15.029 27.494,15.023ZM27.474,8.799H19.485C20.45,10.017 21.16,11.43 21.572,12.948H27.494C27.767,12.943 27.988,12.714 27.993,12.43V9.318C27.99,9.177 27.934,9.044 27.837,8.947C27.739,8.849 27.609,8.796 27.474,8.799ZM27.494,2.575H16.51C16.236,2.58 16.016,2.809 16.01,3.093V5.905C17.938,6.936 15.528,6.749 25.651,6.726L26.852,6.725L27.494,6.724C27.767,6.719 27.988,6.49 27.993,6.206C27.993,3.125 28.153,2.575 27.494,2.575Z"/>
4 - <path android:fillColor="#848484" android:pathData="M11.9,21.5C10.474,21.5 9.258,21.15 8.251,20.451C7.244,19.751 6.537,18.828 6.129,17.68H4.5V16.041H5.773C5.762,15.921 5.756,15.74 5.756,15.5C5.756,15.271 5.762,15.101 5.773,14.992H4.5V13.352H6.112C6.52,12.194 7.227,11.265 8.234,10.566C9.241,9.855 10.458,9.5 11.883,9.5C12.902,9.5 13.801,9.664 14.582,9.992C15.363,10.309 15.997,10.762 16.483,11.352L14.837,13.057C14.474,12.587 14.022,12.238 13.479,12.008C12.947,11.779 12.381,11.664 11.781,11.664C11.125,11.664 10.537,11.817 10.016,12.123C9.507,12.418 9.105,12.828 8.811,13.352H12.919V14.992H8.302C8.291,15.101 8.285,15.271 8.285,15.5C8.285,15.62 8.296,15.8 8.319,16.041H12.919V17.68H8.828C9.134,18.205 9.541,18.615 10.05,18.91C10.559,19.194 11.142,19.336 11.798,19.336C12.398,19.336 12.964,19.221 13.496,18.992C14.039,18.762 14.491,18.413 14.854,17.943L16.5,19.647C16.013,20.238 15.38,20.697 14.599,21.025C13.818,21.341 12.919,21.5 11.9,21.5Z"/>
5 -</vector>
1 -<?xml version="1.0" encoding="utf-8"?>
2 -<vector xmlns:android="http://schemas.android.com/apk/res/android"
3 - android:width="318.547dp"
4 - android:height="237dp"
5 - android:viewportWidth="318.547"
6 - android:viewportHeight="242">
7 -
8 - <path
9 - android:fillColor="#fff"
10 - android:pathData="M279.314,242 L20,242 A20,20,0,0,1,0,222 L0,20 A20,20,0,0,1,20,0 L231.651,0 L231.651,193.9 A48.246,48.246,0,0,0,279.314,242 Z M352.088,0.286 C350.479,0.113,348.83,0.018,347.188,0.002 A45.174,45.174,0,0,1,352.088,0.284 Z" />
11 -</vector>
...\ No newline at end of file ...\ No newline at end of file
1 -<vector xmlns:android="http://schemas.android.com/apk/res/android"
2 - android:width="428dp"
3 - android:height="106dp"
4 - android:viewportWidth="428"
5 - android:viewportHeight="106">
6 - <group>
7 - <clip-path
8 - android:pathData="M0,0h428v106h-428z"/>
9 - <path
10 - android:pathData="M0,98v-98h428v77.99L39,77.99a48.15,48.15 0,0 0,-39 20.01Z"
11 - android:fillColor="#fff"/>
12 - </group>
13 -</vector>
1 -<?xml version="1.0" encoding="utf-8"?>
2 -<androidx.cardview.widget.CardView 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="150dp"
7 - android:layout_marginHorizontal="10dp"
8 - android:layout_marginBottom="24dp"
9 - app:cardCornerRadius="4dp">
10 -
11 - <androidx.constraintlayout.widget.ConstraintLayout
12 - android:layout_width="match_parent"
13 - android:layout_height="match_parent"
14 - android:background="@drawable/selector_cos_campaign">
15 -
16 - <androidx.constraintlayout.widget.Guideline
17 - android:id="@+id/gl_vertical_60_percent"
18 - android:layout_width="wrap_content"
19 - android:layout_height="wrap_content"
20 - android:orientation="vertical"
21 - app:layout_constraintGuide_percent="0.6" />
22 -
23 - <ImageView
24 - android:id="@+id/iv_active_reward"
25 - android:layout_width="0dp"
26 - android:layout_height="0dp"
27 - android:scaleType="centerCrop"
28 - app:layout_constraintBottom_toBottomOf="parent"
29 - app:layout_constraintHorizontal_bias="0.0"
30 - app:layout_constraintLeft_toLeftOf="parent"
31 - app:layout_constraintRight_toLeftOf="@+id/gl_vertical_60_percent"
32 - app:layout_constraintTop_toTopOf="parent"
33 - app:layout_constraintVertical_bias="0.0"
34 - tools:src="@drawable/ic_cosmote_logo_horizontal_grey" />
35 -
36 - <LinearLayout
37 - android:layout_width="0dp"
38 - android:layout_height="match_parent"
39 - android:gravity="center_vertical"
40 - android:orientation="vertical"
41 - app:layout_constraintBottom_toBottomOf="parent"
42 - app:layout_constraintLeft_toRightOf="@+id/gl_vertical_60_percent"
43 - app:layout_constraintRight_toRightOf="parent"
44 - app:layout_constraintTop_toTopOf="parent">
45 -
46 - <TextView
47 - android:id="@+id/tv_active_reward_title"
48 - android:layout_width="wrap_content"
49 - android:layout_height="wrap_content"
50 - android:layout_marginHorizontal="16dp"
51 - android:layout_marginBottom="2dp"
52 - android:maxLines="2"
53 - android:textColor="@color/grey"
54 - android:textSize="16sp"
55 - android:textStyle="bold"
56 - tools:text="-5$ στο BOX" />
57 -
58 - <TextView
59 - android:id="@+id/tv_active_reward_description"
60 - android:layout_width="wrap_content"
61 - android:layout_height="wrap_content"
62 - android:layout_marginHorizontal="16dp"
63 - android:layout_marginTop="2dp"
64 - android:maxLines="4"
65 - android:textColor="@color/grey"
66 - android:textSize="16sp"
67 - tools:text="-10% in all products from IKEA" />
68 - </LinearLayout>
69 -
70 - </androidx.constraintlayout.widget.ConstraintLayout>
71 -</androidx.cardview.widget.CardView>
...\ 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="wrap_content"
6 - android:paddingBottom="24dp">
7 -
8 - <LinearLayout
9 - android:id="@+id/ll_analysis_tab"
10 - android:layout_width="match_parent"
11 - android:layout_height="wrap_content"
12 - android:background="@drawable/shape_cos_grey3"
13 - android:orientation="vertical"
14 - android:padding="24dp">
15 -
16 - <androidx.constraintlayout.widget.ConstraintLayout
17 - android:id="@+id/analysis_tab"
18 - android:layout_width="match_parent"
19 - android:layout_height="wrap_content">
20 -
21 - <ImageView
22 - android:id="@+id/iv_chart_icon1"
23 - android:layout_width="24dp"
24 - android:layout_height="24dp"
25 - android:src="@drawable/ic_smile"
26 - app:layout_constraintBottom_toBottomOf="parent"
27 - app:layout_constraintStart_toStartOf="parent"
28 - app:layout_constraintTop_toTopOf="parent" />
29 -
30 - <TextView
31 - android:layout_width="wrap_content"
32 - android:layout_height="wrap_content"
33 - android:layout_marginStart="16dp"
34 - android:text="Διασκέδαση"
35 - android:textColor="#4D4C58"
36 - android:textSize="15sp"
37 - android:textStyle="bold"
38 - app:layout_constraintBottom_toBottomOf="parent"
39 - app:layout_constraintStart_toEndOf="@+id/iv_chart_icon1"
40 - app:layout_constraintTop_toTopOf="parent" />
41 -
42 - <TextView
43 - android:layout_width="wrap_content"
44 - android:layout_height="wrap_content"
45 - android:text="60%"
46 - android:textColor="#00CB09"
47 - android:textFontWeight="600"
48 - android:textSize="17sp"
49 - app:layout_constraintBottom_toBottomOf="parent"
50 - app:layout_constraintEnd_toEndOf="parent"
51 - app:layout_constraintTop_toTopOf="parent" />
52 - </androidx.constraintlayout.widget.ConstraintLayout>
53 -
54 - <androidx.constraintlayout.widget.ConstraintLayout
55 - android:id="@+id/analysis_tab2"
56 - android:layout_width="match_parent"
57 - android:layout_height="wrap_content"
58 - android:layout_below="@+id/analysis_tab"
59 - android:layout_marginVertical="20dp">
60 -
61 - <ImageView
62 - android:id="@+id/iv_chart_icon2"
63 - android:layout_width="24dp"
64 - android:layout_height="24dp"
65 - android:src="@drawable/ic_cart"
66 - app:layout_constraintBottom_toBottomOf="parent"
67 - app:layout_constraintStart_toStartOf="parent"
68 - app:layout_constraintTop_toTopOf="parent" />
69 -
70 - <TextView
71 - android:layout_width="wrap_content"
72 - android:layout_height="wrap_content"
73 - android:layout_marginStart="16dp"
74 - android:text="Supermarket"
75 - android:textColor="#4D4C58"
76 - android:textSize="15sp"
77 - android:textStyle="bold"
78 - app:layout_constraintBottom_toBottomOf="parent"
79 - app:layout_constraintStart_toEndOf="@+id/iv_chart_icon2"
80 - app:layout_constraintTop_toTopOf="parent" />
81 -
82 - <TextView
83 - android:layout_width="wrap_content"
84 - android:layout_height="wrap_content"
85 - android:text="22%"
86 - android:textColor="#9973F3"
87 - android:textFontWeight="600"
88 - android:textSize="17sp"
89 - app:layout_constraintBottom_toBottomOf="parent"
90 - app:layout_constraintEnd_toEndOf="parent"
91 - app:layout_constraintTop_toTopOf="parent" />
92 - </androidx.constraintlayout.widget.ConstraintLayout>
93 -
94 - <androidx.constraintlayout.widget.ConstraintLayout
95 - android:id="@+id/analysis_tab3"
96 - android:layout_width="match_parent"
97 - android:layout_height="wrap_content"
98 - android:layout_below="@+id/analysis_tab2">
99 -
100 - <ImageView
101 - android:id="@+id/iv_chart_icon3"
102 - android:layout_width="24dp"
103 - android:layout_height="24dp"
104 - android:src="@drawable/ic_plane"
105 - app:layout_constraintBottom_toBottomOf="parent"
106 - app:layout_constraintStart_toStartOf="parent"
107 - app:layout_constraintTop_toTopOf="parent" />
108 -
109 - <TextView
110 - android:layout_width="wrap_content"
111 - android:layout_height="wrap_content"
112 - android:layout_marginStart="16dp"
113 - android:text="Ταξίδια"
114 - android:textColor="#4D4C58"
115 - android:textSize="15sp"
116 - android:textStyle="bold"
117 - app:layout_constraintBottom_toBottomOf="parent"
118 - app:layout_constraintStart_toEndOf="@+id/iv_chart_icon3"
119 - app:layout_constraintTop_toTopOf="parent" />
120 -
121 - <TextView
122 - android:layout_width="wrap_content"
123 - android:layout_height="wrap_content"
124 - android:text="18%"
125 - android:textColor="#0072C9"
126 - android:textFontWeight="600"
127 - android:textSize="17sp"
128 - app:layout_constraintBottom_toBottomOf="parent"
129 - app:layout_constraintEnd_toEndOf="parent"
130 - app:layout_constraintTop_toTopOf="parent" />
131 - </androidx.constraintlayout.widget.ConstraintLayout>
132 -
133 - <androidx.constraintlayout.widget.ConstraintLayout
134 - android:id="@+id/analysis_tab4"
135 - android:layout_width="match_parent"
136 - android:layout_height="wrap_content"
137 - android:layout_below="@+id/analysis_tab2"
138 - android:layout_marginVertical="20dp"
139 - android:visibility="gone"
140 - tools:visibility="visible">
141 -
142 - <ImageView
143 - android:id="@+id/iv_chart_icon4"
144 - android:layout_width="24dp"
145 - android:layout_height="24dp"
146 - android:src="@drawable/ic_gift"
147 - app:layout_constraintBottom_toBottomOf="parent"
148 - app:layout_constraintStart_toStartOf="parent"
149 - app:layout_constraintTop_toTopOf="parent" />
150 -
151 - <TextView
152 - android:layout_width="wrap_content"
153 - android:layout_height="wrap_content"
154 - android:layout_marginStart="16dp"
155 - android:text="Δώρο Γενεθλίων"
156 - android:textColor="#4D4C58"
157 - android:textSize="15sp"
158 - android:textStyle="bold"
159 - app:layout_constraintBottom_toBottomOf="parent"
160 - app:layout_constraintStart_toEndOf="@+id/iv_chart_icon4"
161 - app:layout_constraintTop_toTopOf="parent" />
162 -
163 - <TextView
164 - android:layout_width="wrap_content"
165 - android:layout_height="wrap_content"
166 - android:text="50%"
167 - android:textColor="#00CB09"
168 - android:textFontWeight="600"
169 - android:textSize="17sp"
170 - app:layout_constraintBottom_toBottomOf="parent"
171 - app:layout_constraintEnd_toEndOf="parent"
172 - app:layout_constraintTop_toTopOf="parent" />
173 - </androidx.constraintlayout.widget.ConstraintLayout>
174 -
175 - <androidx.constraintlayout.widget.ConstraintLayout
176 - android:id="@+id/analysis_tab5"
177 - android:layout_width="match_parent"
178 - android:layout_height="wrap_content"
179 - android:layout_below="@+id/analysis_tab2"
180 - android:visibility="gone"
181 - tools:visibility="visible">
182 -
183 - <ImageView
184 - android:id="@+id/iv_chart_icon5"
185 - android:layout_width="24dp"
186 - android:layout_height="24dp"
187 - android:src="@drawable/ic_steering_wheel"
188 - app:layout_constraintBottom_toBottomOf="parent"
189 - app:layout_constraintStart_toStartOf="parent"
190 - app:layout_constraintTop_toTopOf="parent" />
191 -
192 - <TextView
193 - android:layout_width="wrap_content"
194 - android:layout_height="wrap_content"
195 - android:layout_marginStart="16dp"
196 - android:text="Safe driving"
197 - android:textColor="#4D4C58"
198 - android:textSize="15sp"
199 - android:textStyle="bold"
200 - app:layout_constraintBottom_toBottomOf="parent"
201 - app:layout_constraintStart_toEndOf="@+id/iv_chart_icon5"
202 - app:layout_constraintTop_toTopOf="parent" />
203 -
204 - <TextView
205 - android:layout_width="wrap_content"
206 - android:layout_height="wrap_content"
207 - android:text="50%"
208 - android:textColor="#3D5265"
209 - android:textFontWeight="600"
210 - android:textSize="17sp"
211 - app:layout_constraintBottom_toBottomOf="parent"
212 - app:layout_constraintEnd_toEndOf="parent"
213 - app:layout_constraintTop_toTopOf="parent" />
214 - </androidx.constraintlayout.widget.ConstraintLayout>
215 - </LinearLayout>
216 -
217 - <TextView
218 - android:id="@+id/tv_analysis_details"
219 - android:layout_width="match_parent"
220 - android:layout_height="50dp"
221 - android:layout_below="@+id/ll_analysis_tab"
222 - android:layout_marginHorizontal="16dp"
223 - android:layout_marginTop="36dp"
224 - android:background="@drawable/shape_cos_green"
225 - android:gravity="center"
226 - android:paddingHorizontal="64dp"
227 - android:text="@string/cos_analysis2"
228 - android:textColor="@android:color/white"
229 - android:textSize="16sp"
230 - android:textStyle="bold" />
231 -</RelativeLayout>
...\ No newline at end of file ...\ No newline at end of file
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 - android:layout_width="200dp"
5 - android:layout_height="200dp">
6 -
7 - <androidx.constraintlayout.widget.Guideline
8 - android:id="@+id/gl_vertical_15_guideline"
9 - android:layout_width="wrap_content"
10 - android:layout_height="wrap_content"
11 - android:orientation="vertical"
12 - app:layout_constraintGuide_percent="0.15" />
13 -
14 - <androidx.constraintlayout.widget.Guideline
15 - android:id="@+id/gl_vertical_85_guideline"
16 - android:layout_width="wrap_content"
17 - android:layout_height="wrap_content"
18 - android:orientation="vertical"
19 - app:layout_constraintGuide_percent="0.85" />
20 -
21 - <include
22 - android:id="@+id/piechart"
23 - layout="@layout/cos_piechart2"
24 - android:visibility="gone"
25 - app:layout_constraintBottom_toBottomOf="parent"
26 - app:layout_constraintEnd_toEndOf="@+id/iv_chart"
27 - app:layout_constraintStart_toStartOf="parent"
28 - app:layout_constraintTop_toTopOf="parent" />
29 -
30 - <ImageView
31 - android:id="@+id/iv_chart"
32 - android:layout_width="0dp"
33 - android:layout_height="0dp"
34 - android:src="@drawable/ic_chart"
35 - app:layout_constraintBottom_toBottomOf="parent"
36 - app:layout_constraintEnd_toEndOf="parent"
37 - app:layout_constraintStart_toStartOf="parent"
38 - app:layout_constraintTop_toTopOf="parent" />
39 -
40 - <ImageView
41 - android:id="@+id/iv_inner_chart"
42 - android:layout_width="wrap_content"
43 - android:layout_height="wrap_content"
44 - android:src="@drawable/ic_cosmote_logo"
45 - app:layout_constraintBottom_toBottomOf="parent"
46 - app:layout_constraintEnd_toStartOf="@+id/gl_vertical_85_guideline"
47 - app:layout_constraintStart_toEndOf="@+id/gl_vertical_15_guideline"
48 - app:layout_constraintTop_toTopOf="parent" />
49 -</androidx.constraintlayout.widget.ConstraintLayout>
...\ No newline at end of file ...\ No newline at end of file
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:layout_width="200dp"
6 - android:layout_height="200dp">
7 -
8 - <androidx.constraintlayout.widget.Guideline
9 - android:id="@+id/gl_vertical_15_guideline"
10 - android:layout_width="wrap_content"
11 - android:layout_height="wrap_content"
12 - android:orientation="vertical"
13 - app:layout_constraintGuide_percent="0.15" />
14 -
15 - <androidx.constraintlayout.widget.Guideline
16 - android:id="@+id/gl_vertical_85_guideline"
17 - android:layout_width="wrap_content"
18 - android:layout_height="wrap_content"
19 - android:orientation="vertical"
20 - app:layout_constraintGuide_percent="0.85" />
21 -
22 - <ImageView
23 - android:id="@+id/iv_chart"
24 - android:layout_width="0dp"
25 - android:layout_height="0dp"
26 - android:src="@drawable/ic_chart2"
27 - app:layout_constraintBottom_toBottomOf="parent"
28 - app:layout_constraintEnd_toEndOf="parent"
29 - app:layout_constraintStart_toStartOf="parent"
30 - app:layout_constraintTop_toTopOf="parent" />
31 -
32 - <ImageView
33 - android:id="@+id/iv_inner_chart"
34 - android:layout_width="wrap_content"
35 - android:layout_height="wrap_content"
36 - android:src="@drawable/deals_for_you"
37 - app:layout_constraintBottom_toBottomOf="parent"
38 - app:layout_constraintEnd_toStartOf="@+id/gl_vertical_85_guideline"
39 - app:layout_constraintStart_toEndOf="@+id/gl_vertical_15_guideline"
40 - app:layout_constraintTop_toTopOf="parent"
41 - app:layout_constraintVertical_bias="0.308" />
42 -
43 - <TextView
44 - android:id="@+id/textView4"
45 - android:layout_width="wrap_content"
46 - android:layout_height="wrap_content"
47 - android:layout_marginStart="60dp"
48 - android:layout_marginTop="12dp"
49 - android:gravity="center"
50 - android:text="έχεις κερδίσει"
51 - android:textColor="#4D4C58"
52 - android:textSize="12dp"
53 - app:layout_constraintEnd_toEndOf="parent"
54 - app:layout_constraintHorizontal_bias="0.0"
55 - app:layout_constraintStart_toStartOf="@+id/iv_chart"
56 - app:layout_constraintTop_toBottomOf="@+id/iv_inner_chart" />
57 -
58 - <TextView
59 - android:id="@+id/textView8"
60 - android:layout_width="wrap_content"
61 - android:layout_height="wrap_content"
62 - android:layout_marginTop="8dp"
63 - android:gravity="center"
64 - android:text="12,00€"
65 - android:textColor="#4D4C58"
66 - android:textSize="18dp"
67 - android:textFontWeight="1000"
68 - app:layout_constraintBottom_toBottomOf="parent"
69 - app:layout_constraintEnd_toEndOf="@+id/iv_chart"
70 - app:layout_constraintHorizontal_bias="0.503"
71 - app:layout_constraintStart_toStartOf="parent"
72 - app:layout_constraintTop_toBottomOf="@+id/textView4"
73 - app:layout_constraintVertical_bias="0.0" />
74 -</androidx.constraintlayout.widget.ConstraintLayout>
...\ No newline at end of file ...\ No newline at end of file
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 - android:layout_width="200dp"
5 - android:layout_height="200dp">
6 -
7 - <androidx.constraintlayout.widget.Guideline
8 - android:id="@+id/gl_vertical_15_guideline"
9 - android:layout_width="wrap_content"
10 - android:layout_height="wrap_content"
11 - android:orientation="vertical"
12 - app:layout_constraintGuide_percent="0.15" />
13 -
14 - <androidx.constraintlayout.widget.Guideline
15 - android:id="@+id/gl_vertical_85_guideline"
16 - android:layout_width="wrap_content"
17 - android:layout_height="wrap_content"
18 - android:orientation="vertical"
19 - app:layout_constraintGuide_percent="0.85" />
20 -
21 - <include
22 - android:id="@+id/cl_inner_chart"
23 - layout="@layout/cos_piechart"
24 - android:layout_width="200dp"
25 - android:layout_height="200dp"
26 - app:layout_constraintEnd_toEndOf="parent"
27 - app:layout_constraintStart_toStartOf="parent"
28 - app:layout_constraintTop_toTopOf="parent" />
29 -
30 - <include
31 - android:id="@+id/cl_inner_chart2"
32 - layout="@layout/cos_piechart2"
33 - android:layout_width="200dp"
34 - android:layout_height="200dp"
35 - android:visibility="gone"
36 - app:layout_constraintEnd_toEndOf="parent"
37 - app:layout_constraintStart_toStartOf="parent"
38 - app:layout_constraintTop_toTopOf="parent" />
39 -</androidx.constraintlayout.widget.ConstraintLayout>
...\ No newline at end of file ...\ No newline at end of file
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 - android:id="@+id/cl_transcation_item"
5 - android:layout_width="match_parent"
6 - android:layout_height="wrap_content"
7 - android:background="@drawable/banner_border_white3"
8 - android:paddingVertical="5dp">
9 -
10 - <androidx.constraintlayout.widget.Guideline
11 - android:id="@+id/gl_vertical_5_percent"
12 - android:layout_width="wrap_content"
13 - android:layout_height="wrap_content"
14 - android:orientation="vertical"
15 - app:layout_constraintGuide_percent="0.05" />
16 -
17 - <androidx.constraintlayout.widget.Guideline
18 - android:id="@+id/gl_vertical_95_percent"
19 - android:layout_width="wrap_content"
20 - android:layout_height="wrap_content"
21 - android:orientation="vertical"
22 - app:layout_constraintGuide_percent="0.95" />
23 -
24 - <TextView
25 - android:id="@+id/tv_transaction_title"
26 - android:layout_width="282dp"
27 - android:layout_height="0dp"
28 - android:layout_marginStart="20dp"
29 - android:layout_marginTop="8dp"
30 - android:lines="1"
31 - android:text="Κουπόνι"
32 - android:textColor="#355168"
33 - app:layout_constraintEnd_toStartOf="@+id/gl_vertical_95_percent"
34 - app:layout_constraintHorizontal_bias="0.0"
35 - app:layout_constraintStart_toEndOf="@+id/view2"
36 - app:layout_constraintTop_toTopOf="parent" />
37 -
38 - <TextView
39 - android:id="@+id/tv_transaction_subtitle"
40 - android:layout_width="286dp"
41 - android:layout_height="wrap_content"
42 - android:layout_marginTop="4dp"
43 - android:maxLines="2"
44 - android:text="BOX 4€ έκπτωση για την επόμενη παραγγελία σου!"
45 - android:textColor="#355168"
46 - android:textFontWeight="1000"
47 - android:textSize="15dp"
48 - app:layout_constraintEnd_toStartOf="@+id/gl_vertical_95_percent"
49 - app:layout_constraintHorizontal_bias="0.0"
50 - app:layout_constraintStart_toStartOf="@+id/tv_transaction_title"
51 - app:layout_constraintTop_toBottomOf="@+id/tv_transaction_title" />
52 -
53 - <TextView
54 - android:id="@+id/textView20"
55 - android:layout_width="wrap_content"
56 - android:layout_height="wrap_content"
57 - android:text="26-11-2021"
58 - android:textColor="#82355168"
59 - android:textSize="12dp"
60 - app:layout_constraintEnd_toEndOf="parent"
61 - app:layout_constraintHorizontal_bias="0.952"
62 - app:layout_constraintStart_toStartOf="parent"
63 - app:layout_constraintTop_toBottomOf="@+id/tv_transaction_subtitle" />
64 -
65 - <View
66 - android:id="@+id/view2"
67 - android:layout_width="45dp"
68 - android:layout_height="45dp"
69 - android:layout_marginTop="8dp"
70 - android:background="@drawable/banner_border_grey_bg2"
71 - app:layout_constraintStart_toStartOf="@+id/gl_vertical_5_percent"
72 - app:layout_constraintTop_toTopOf="parent" />
73 -
74 - <ImageView
75 - android:id="@+id/imageView5"
76 - android:layout_width="23dp"
77 - android:layout_height="23dp"
78 - android:src="@drawable/cosmote_logo_small"
79 - app:layout_constraintBottom_toBottomOf="@+id/view2"
80 - app:layout_constraintEnd_toEndOf="@+id/view2"
81 - app:layout_constraintStart_toStartOf="@+id/gl_vertical_5_percent"
82 - app:layout_constraintTop_toTopOf="@+id/view2" />
83 -</androidx.constraintlayout.widget.ConstraintLayout>
...\ No newline at end of file ...\ No newline at end of file
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:custom="http://schemas.android.com/apk/res-auto"
5 - xmlns:tools="http://schemas.android.com/tools"
6 - android:layout_width="match_parent"
7 - android:layout_height="145dp"
8 - android:layout_marginHorizontal="6dp"
9 - android:layout_marginBottom="3dp"
10 - android:id="@+id/cl_active_custom_layout"
11 - android:background="@drawable/ic_coupon_background_new3">
12 -
13 - <androidx.constraintlayout.widget.Guideline
14 - android:id="@+id/gl_vertical_72_percent"
15 - android:layout_width="wrap_content"
16 - android:layout_height="wrap_content"
17 - android:orientation="vertical"
18 - app:layout_constraintGuide_percent="0.72" />
19 -
20 - <ImageView
21 - android:id="@+id/iv_active_coupon"
22 - android:layout_width="80dp"
23 - android:layout_height="80dp"
24 - android:layout_marginStart="24dp"
25 - app:layout_constraintBottom_toBottomOf="parent"
26 - app:layout_constraintStart_toStartOf="parent"
27 - app:layout_constraintTop_toTopOf="parent"
28 - tools:src="@drawable/ic_gifts_for_you" />
29 -
30 - <ly.warp.sdk.views.DividerView
31 - android:id="@+id/v_separator"
32 - android:layout_width="1dp"
33 - android:layout_height="0dp"
34 - android:layout_marginVertical="16dp"
35 - android:layout_marginStart="16dp"
36 - android:layerType="software"
37 - app:layout_constraintBottom_toBottomOf="parent"
38 - app:layout_constraintStart_toEndOf="@+id/iv_active_coupon"
39 - app:layout_constraintTop_toTopOf="parent"
40 - custom:color="@color/cos_gray"
41 - custom:dashGap="10dp"
42 - custom:dashLength="10dp"
43 - custom:dashThickness="1dp"
44 - custom:orientation="vertical" />
45 -
46 - <LinearLayout
47 - android:id="@+id/ll_coupon_info"
48 - android:layout_width="0dp"
49 - android:layout_height="wrap_content"
50 - android:layout_marginHorizontal="16dp"
51 - android:orientation="vertical"
52 - app:layout_constraintBottom_toBottomOf="parent"
53 - app:layout_constraintEnd_toEndOf="parent"
54 - app:layout_constraintStart_toEndOf="@+id/v_separator"
55 - app:layout_constraintTop_toTopOf="parent">
56 -
57 - <TextView
58 - android:id="@+id/tv_active_coupons_title"
59 - android:layout_width="wrap_content"
60 - android:layout_height="wrap_content"
61 - android:ellipsize="end"
62 - android:maxLines="1"
63 - android:textColor="@color/cos_light_black"
64 - android:textSize="16sp"
65 - tools:text="Εκπτωτικο κουπονι 10$ για αγορες στα ΙΚΕΑ" />
66 -
67 - <androidx.constraintlayout.widget.ConstraintLayout
68 - android:layout_width="match_parent"
69 - android:layout_height="wrap_content">
70 -
71 - <androidx.constraintlayout.widget.Guideline
72 - android:id="@+id/gl_vertical_62_percent_inner"
73 - android:layout_width="wrap_content"
74 - android:layout_height="wrap_content"
75 - android:orientation="vertical"
76 - app:layout_constraintGuide_percent="0.62" />
77 -
78 - <TextView
79 - android:id="@+id/tv_active_coupons_value"
80 - android:layout_width="wrap_content"
81 - android:layout_height="wrap_content"
82 - android:textColor="@color/cos_light_black"
83 - android:textSize="42sp"
84 - app:layout_constraintBottom_toBottomOf="parent"
85 - app:layout_constraintStart_toStartOf="parent"
86 - app:layout_constraintTop_toTopOf="parent"
87 - tools:text="10$" />
88 -
89 - <TextView
90 - android:id="@+id/tv_active_coupons_description"
91 - android:layout_width="0dp"
92 - android:layout_height="wrap_content"
93 - android:ellipsize="end"
94 - android:maxLines="3"
95 - android:textColor="@color/cos_light_black"
96 - android:textSize="12sp"
97 - app:layout_constraintBottom_toBottomOf="parent"
98 - app:layout_constraintEnd_toEndOf="parent"
99 - app:layout_constraintHorizontal_bias="0.0"
100 - app:layout_constraintStart_toEndOf="@+id/gl_vertical_62_percent_inner"
101 - app:layout_constraintTop_toTopOf="parent"
102 - app:layout_constraintVertical_bias="0.545"
103 - tools:text="Εκπτωση με ελάχιστες αγορές 100€" />
104 - </androidx.constraintlayout.widget.ConstraintLayout>
105 -
106 - <TextView
107 - android:id="@+id/tv_active_coupons_date"
108 - android:layout_width="wrap_content"
109 - android:layout_height="wrap_content"
110 - android:textColor="@color/cos_light_black"
111 - android:textSize="12sp"
112 - tools:text="@string/cos_active_coupon_date" />
113 - </LinearLayout>
114 -
115 - <ImageView
116 - android:id="@+id/iv_choose_coupon"
117 - android:layout_width="24dp"
118 - android:layout_height="24dp"
119 - android:layout_marginTop="8dp"
120 - android:layout_marginEnd="8dp"
121 - app:layout_constraintEnd_toEndOf="parent"
122 - app:layout_constraintTop_toTopOf="parent"
123 - tools:src="@drawable/ic_circle_gray" />
124 -</androidx.constraintlayout.widget.ConstraintLayout>
...\ No newline at end of file ...\ No newline at end of file
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:custom="http://schemas.android.com/apk/res-auto"
5 - xmlns:tools="http://schemas.android.com/tools"
6 - android:id="@+id/cl_custom_layout"
7 - android:layout_width="match_parent"
8 - android:layout_height="145dp"
9 - android:layout_marginHorizontal="6dp"
10 - android:layout_marginBottom="4dp"
11 - android:background="@drawable/ic_coupon_background_new3">
12 -
13 - <ImageView
14 - android:id="@+id/iv_active_coupon"
15 - android:layout_width="80dp"
16 - android:layout_height="80dp"
17 - android:layout_marginStart="24dp"
18 - app:layout_constraintBottom_toBottomOf="parent"
19 - app:layout_constraintStart_toStartOf="parent"
20 - app:layout_constraintTop_toTopOf="parent"
21 - tools:src="@drawable/ic_gifts_for_you" />
22 -
23 - <ly.warp.sdk.views.DividerView
24 - android:id="@+id/v_separator"
25 - android:layout_width="1dp"
26 - android:layout_height="0dp"
27 - android:layout_marginVertical="16dp"
28 - android:layout_marginStart="16dp"
29 - android:layerType="software"
30 - app:layout_constraintBottom_toBottomOf="parent"
31 - app:layout_constraintStart_toEndOf="@+id/iv_active_coupon"
32 - app:layout_constraintTop_toTopOf="parent"
33 - custom:color="@color/cos_gray"
34 - custom:dashGap="10dp"
35 - custom:dashLength="10dp"
36 - custom:dashThickness="1dp"
37 - custom:orientation="vertical" />
38 -
39 - <LinearLayout
40 - android:id="@+id/ll_coupon_info"
41 - android:layout_width="0dp"
42 - android:layout_height="wrap_content"
43 - android:layout_marginHorizontal="16dp"
44 - android:orientation="vertical"
45 - app:layout_constraintBottom_toBottomOf="parent"
46 - app:layout_constraintEnd_toEndOf="parent"
47 - app:layout_constraintStart_toEndOf="@+id/v_separator"
48 - app:layout_constraintTop_toTopOf="parent">
49 -
50 - <TextView
51 - android:id="@+id/tv_active_coupons_title"
52 - android:layout_width="wrap_content"
53 - android:layout_height="wrap_content"
54 - android:ellipsize="end"
55 - android:maxLines="1"
56 - android:textColor="@color/cos_light_black"
57 - android:textSize="16sp"
58 - tools:text="Εκπτωτικο κουπονι 10$ για αγορες στα ΙΚΕΑ" />
59 -
60 - <androidx.constraintlayout.widget.ConstraintLayout
61 - android:layout_width="match_parent"
62 - android:layout_height="wrap_content">
63 -
64 - <androidx.constraintlayout.widget.Guideline
65 - android:id="@+id/gl_vertical_62_percent_inner"
66 - android:layout_width="wrap_content"
67 - android:layout_height="wrap_content"
68 - android:orientation="vertical"
69 - app:layout_constraintGuide_percent="0.62" />
70 -
71 - <TextView
72 - android:id="@+id/tv_active_coupons_value"
73 - android:layout_width="wrap_content"
74 - android:layout_height="wrap_content"
75 - android:textColor="@color/cos_light_black"
76 - android:textSize="42sp"
77 - app:layout_constraintBottom_toBottomOf="parent"
78 - app:layout_constraintStart_toStartOf="parent"
79 - app:layout_constraintTop_toTopOf="parent"
80 - tools:text="10$" />
81 -
82 - <TextView
83 - android:id="@+id/tv_active_coupons_description"
84 - android:layout_width="0dp"
85 - android:layout_height="wrap_content"
86 - android:maxLines="3"
87 - android:ellipsize="end"
88 - android:textColor="@color/cos_light_black"
89 - android:textSize="12sp"
90 - app:layout_constraintBottom_toBottomOf="parent"
91 - app:layout_constraintEnd_toEndOf="parent"
92 - app:layout_constraintStart_toEndOf="@+id/gl_vertical_62_percent_inner"
93 - app:layout_constraintTop_toTopOf="parent"
94 - tools:text="Εκπτωση με ελάχιστες αγορές 100€" />
95 - </androidx.constraintlayout.widget.ConstraintLayout>
96 -
97 - <TextView
98 - android:id="@+id/tv_active_coupons_date"
99 - android:layout_width="wrap_content"
100 - android:layout_height="wrap_content"
101 - android:textColor="@color/cos_light_black"
102 - android:textSize="12sp"
103 - android:visibility="gone"
104 - tools:text="@string/cos_active_coupon_date" />
105 -
106 - <TextView
107 - android:id="@+id/tv_active_coupons_date_expired"
108 - android:layout_width="wrap_content"
109 - android:layout_height="wrap_content"
110 - android:textColor="@color/cos_light_black"
111 - android:textSize="12sp"
112 - android:visibility="gone"
113 - tools:text="@string/cos_market_coupon_expired" />
114 -
115 - <LinearLayout
116 - android:id="@+id/ll_date_limit"
117 - android:layout_width="wrap_content"
118 - android:layout_height="wrap_content"
119 - android:background="@drawable/shape_market_limit"
120 - android:gravity="center_vertical"
121 - android:orientation="horizontal"
122 - android:visibility="gone"
123 - app:layout_constraintBottom_toBottomOf="parent"
124 - app:layout_constraintStart_toEndOf="@+id/v_separator"
125 - app:layout_constraintTop_toBottomOf="@+id/ll_coupon_info"
126 - tools:visibility="visible">
127 -
128 - <ImageView
129 - android:layout_width="14dp"
130 - android:layout_height="14dp"
131 - android:layout_marginEnd="4dp"
132 - android:src="@drawable/timer_blue" />
133 -
134 - <TextView
135 - android:id="@+id/tv_active_coupons_date_limit_title"
136 - android:layout_width="wrap_content"
137 - android:layout_height="wrap_content"
138 - android:text="@string/cos_coupon_date_limit"
139 - android:includeFontPadding="false"
140 - android:textColor="@color/cos_light_black"
141 - android:textSize="12sp" />
142 -
143 - <TextView
144 - android:id="@+id/tv_active_coupons_date_limit"
145 - android:layout_width="wrap_content"
146 - android:layout_height="wrap_content"
147 - android:text="@string/cos_coupon_date_limit"
148 - android:includeFontPadding="false"
149 - android:textColor="@color/cos_blue6"
150 - android:textSize="12sp"
151 - tools:text="@string/cos_coupon_date_limit2" />
152 - </LinearLayout>
153 - </LinearLayout>
154 -</androidx.constraintlayout.widget.ConstraintLayout>
...\ No newline at end of file ...\ No newline at end of file
1 -<?xml version="1.0" encoding="utf-8"?>
2 -<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 - android:id="@+id/rl_sm_sheet_dialog_view"
4 - android:layout_width="match_parent"
5 - android:layout_height="match_parent"
6 - android:background="@drawable/shape_cos_white_rounded_top"
7 - android:orientation="vertical">
8 -
9 - <RelativeLayout
10 - android:id="@+id/rl_sm_sheet"
11 - android:layout_width="match_parent"
12 - android:layout_height="wrap_content"
13 - android:layout_marginBottom="24dp"
14 - android:paddingTop="16dp">
15 -
16 - <ImageView
17 - android:id="@+id/iv_sm_sheet_category_close"
18 - android:layout_width="16dp"
19 - android:layout_height="16dp"
20 - android:layout_alignParentEnd="true"
21 - android:layout_marginEnd="24dp"
22 - android:src="@drawable/ic_close" />
23 - </RelativeLayout>
24 -
25 - <LinearLayout
26 - android:id="@+id/ll_unified_shops"
27 - android:layout_width="312dp"
28 - android:layout_height="55dp"
29 - android:layout_gravity="center"
30 - android:background="@drawable/selector_button_green"
31 - android:gravity="center"
32 - android:orientation="horizontal"
33 - android:paddingVertical="8dp">
34 -
35 - <TextView
36 - android:id="@+id/shops_label"
37 - android:layout_width="wrap_content"
38 - android:layout_height="wrap_content"
39 - android:gravity="center"
40 - android:includeFontPadding="false"
41 - android:text="@string/cos_markets_map"
42 - android:textColor="@color/white"
43 - android:textSize="16sp" />
44 - </LinearLayout>
45 -
46 - <LinearLayout
47 - android:id="@+id/ll_unified_eshops"
48 - android:layout_width="312dp"
49 - android:layout_height="55dp"
50 - android:layout_gravity="center"
51 - android:layout_marginTop="20dp"
52 - android:layout_marginBottom="48dp"
53 - android:background="@drawable/selector_button_green_border"
54 - android:gravity="center"
55 - android:orientation="horizontal"
56 - android:paddingVertical="8dp">
57 -
58 - <TextView
59 - android:id="@+id/eshops_label"
60 - android:layout_width="wrap_content"
61 - android:layout_height="wrap_content"
62 - android:gravity="center"
63 - android:includeFontPadding="false"
64 - android:text="@string/cos_markets_eshop"
65 - android:textColor="@color/cos_green12"
66 - android:textSize="16sp" />
67 - </LinearLayout>
68 -</LinearLayout>
...\ No newline at end of file ...\ No newline at end of file
1 -<?xml version="1.0" encoding="utf-8"?>
2 -<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 - android:id="@+id/rl_sm_sheet_dialog_view"
4 - android:layout_width="match_parent"
5 - android:layout_height="match_parent"
6 - android:orientation="vertical"
7 - android:background="@drawable/shape_cos_white_rounded_top">
8 -
9 - <RelativeLayout
10 - android:id="@+id/rl_sm_sheet"
11 - android:layout_width="match_parent"
12 - android:layout_height="wrap_content"
13 - android:layout_marginBottom="24dp"
14 - android:paddingTop="16dp">
15 -
16 - <TextView
17 - android:id="@+id/tv_sm_sheet_title"
18 - android:layout_width="wrap_content"
19 - android:layout_height="wrap_content"
20 - android:layout_alignParentStart="true"
21 - android:layout_marginStart="24dp"
22 - android:text="@string/cos_find_sm_product"
23 - android:textColor="@color/cos_light_black"
24 - android:textSize="17sp" />
25 -
26 - <ImageView
27 - android:id="@+id/iv_sm_sheet_close"
28 - android:layout_width="16dp"
29 - android:layout_height="16dp"
30 - android:layout_alignParentEnd="true"
31 - android:layout_marginEnd="24dp"
32 - android:src="@drawable/ic_close" />
33 - </RelativeLayout>
34 -
35 - <LinearLayout
36 - android:id="@+id/ll_sm_sheet_view_inner"
37 - android:layout_width="match_parent"
38 - android:layout_height="wrap_content"
39 - android:layout_marginHorizontal="24dp"
40 - android:layout_marginTop="48dp"
41 - android:orientation="vertical">
42 -
43 - </LinearLayout>
44 -
45 - <TextView
46 - android:id="@+id/tv_sm_sheet_subtitle"
47 - android:layout_width="wrap_content"
48 - android:layout_height="wrap_content"
49 - android:layout_marginHorizontal="48dp"
50 - android:layout_marginVertical="32dp"
51 - android:text="@string/cos_sm_sheet_subtitle"
52 - android:textColor="@color/cos_light_black"
53 - android:layout_gravity="center"
54 - android:gravity="center"
55 - android:textSize="14sp" />
56 -</LinearLayout>
...\ No newline at end of file ...\ No newline at end of file
1 -<?xml version="1.0" encoding="utf-8"?>
2 -<RelativeLayout 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="wrap_content"
7 - android:layout_gravity="center_horizontal"
8 - android:paddingHorizontal="16dp"
9 - android:paddingVertical="56dp">
10 -
11 - <TextView
12 - android:id="@+id/tv_dl_title"
13 - android:layout_width="match_parent"
14 - android:layout_height="55dp"
15 - android:layout_alignParentStart="true"
16 - android:layout_alignParentTop="true"
17 - android:layout_alignParentEnd="true"
18 - android:layout_marginHorizontal="48dp"
19 - android:gravity="center"
20 - android:text="Έλαβες δώρο!"
21 - android:textColor="#0072C9"
22 - android:textSize="25sp"
23 - android:textStyle="bold"
24 - app:layout_constraintTop_toTopOf="parent" />
25 -
26 - <TextView
27 - android:id="@+id/tv_dl_subtitle"
28 - android:layout_width="match_parent"
29 - android:layout_height="wrap_content"
30 - android:layout_below="@+id/tv_dl_title"
31 - android:layout_alignParentStart="true"
32 - android:layout_alignParentEnd="true"
33 - android:layout_marginHorizontal="48dp"
34 - android:layout_marginTop="16dp"
35 - android:layout_marginBottom="24dp"
36 - android:gravity="center"
37 - android:textColor="#5B5B5B"
38 - android:textFontWeight="500"
39 - android:textSize="18sp"
40 - tools:text="@string/cos_dl_title" />
41 -
42 - <LinearLayout
43 - android:id="@+id/ll_dl_redeem"
44 - android:layout_width="match_parent"
45 - android:layout_height="50dp"
46 - android:layout_below="@+id/tv_dl_subtitle"
47 - android:layout_marginHorizontal="32dp"
48 - android:layout_marginTop="24dp"
49 - android:background="@drawable/shape_cos_gradient2"
50 - android:gravity="center"
51 - android:orientation="horizontal">
52 -
53 - <TextView
54 - android:layout_width="wrap_content"
55 - android:layout_height="wrap_content"
56 - android:gravity="center"
57 - android:text="Εξαργύρωσε τώρα!"
58 - android:textColor="@color/white"
59 - android:textSize="17dp"
60 - android:textStyle="bold" />
61 - </LinearLayout>
62 -
63 -</RelativeLayout>
...\ No newline at end of file ...\ No newline at end of file
1 -<?xml version="1.0" encoding="utf-8"?>
2 -<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 - xmlns:tools="http://schemas.android.com/tools"
4 - android:id="@+id/rl_map_pin_view"
5 - android:layout_width="match_parent"
6 - android:layout_height="match_parent"
7 - android:background="@drawable/shape_cos_white_rounded_top"
8 - android:orientation="vertical">
9 -
10 - <RelativeLayout
11 - android:id="@+id/rl_map_pin"
12 - android:layout_width="match_parent"
13 - android:layout_height="wrap_content"
14 - android:layout_marginBottom="24dp"
15 - android:paddingHorizontal="24dp"
16 - android:paddingTop="16dp">
17 -
18 - <TextView
19 - android:id="@+id/tv_pin_title"
20 - android:layout_width="wrap_content"
21 - android:layout_height="wrap_content"
22 - android:layout_alignParentStart="true"
23 - android:textColor="@color/cos_grey9"
24 - android:textSize="16sp"
25 - tools:text="ΓΕΡΜΑΝΟΣ" />
26 -
27 - <ImageView
28 - android:id="@+id/iv_map_pin_close"
29 - android:layout_width="16dp"
30 - android:layout_height="16dp"
31 - android:layout_alignParentEnd="true"
32 - android:src="@drawable/ic_close" />
33 - </RelativeLayout>
34 -
35 - <LinearLayout
36 - android:layout_width="match_parent"
37 - android:layout_height="wrap_content"
38 - android:gravity="center_vertical"
39 - android:paddingHorizontal="24dp">
40 -
41 - <ImageView
42 - android:id="@+id/iv_pin_logo"
43 - android:layout_width="36dp"
44 - android:layout_height="36dp"
45 - tools:src="@drawable/ic_deals_circle" />
46 -
47 - <LinearLayout
48 - android:id="@+id/ll_pin_title_view"
49 - android:layout_width="wrap_content"
50 - android:layout_height="wrap_content"
51 - android:layout_marginStart="8dp"
52 - android:layout_toEndOf="@+id/iv_pin_logo"
53 - android:orientation="vertical">
54 -
55 - <TextView
56 - android:id="@+id/tv_pin_name"
57 - android:layout_width="wrap_content"
58 - android:layout_height="wrap_content"
59 - android:textColor="@color/grey"
60 - android:textSize="14sp"
61 - tools:text="Γερμανός Χαλανδρίου" />
62 -
63 - <TextView
64 - android:id="@+id/tv_pin_days"
65 - android:layout_width="wrap_content"
66 - android:layout_height="wrap_content"
67 - android:textColor="@color/cos_grey8"
68 - android:textSize="14sp"
69 - tools:text="Δευτέρα-Τετάρτη" />
70 - </LinearLayout>
71 - </LinearLayout>
72 -
73 - <View
74 - android:layout_width="match_parent"
75 - android:layout_height="1dp"
76 - android:layout_marginHorizontal="12dp"
77 - android:layout_marginVertical="12dp"
78 - android:background="@drawable/divider2" />
79 -
80 - <LinearLayout
81 - android:layout_width="match_parent"
82 - android:layout_height="36dp"
83 - android:gravity="center_vertical"
84 - android:orientation="horizontal"
85 - android:paddingHorizontal="24dp">
86 -
87 - <ImageView
88 - android:layout_width="14dp"
89 - android:layout_height="14dp"
90 - android:src="@drawable/ic_pin_tel" />
91 -
92 - <TextView
93 - android:id="@+id/tv_pin_tel"
94 - android:layout_width="wrap_content"
95 - android:layout_height="wrap_content"
96 - android:layout_marginStart="12dp"
97 - android:textColor="@color/grey"
98 - android:textSize="14sp"
99 - tools:text="210-6230543" />
100 - </LinearLayout>
101 -
102 - <View
103 - android:layout_width="match_parent"
104 - android:layout_height="1dp"
105 - android:layout_marginHorizontal="12dp"
106 - android:layout_marginVertical="12dp"
107 - android:background="@drawable/divider2" />
108 -
109 - <RelativeLayout
110 - android:layout_width="match_parent"
111 - android:layout_height="wrap_content"
112 - android:layout_marginBottom="16dp"
113 - android:paddingHorizontal="24dp">
114 -
115 - <LinearLayout
116 - android:id="@+id/ll_pin_address"
117 - android:layout_width="match_parent"
118 - android:layout_height="36dp"
119 - android:gravity="center_vertical"
120 - android:orientation="horizontal">
121 -
122 - <ImageView
123 - android:layout_width="14dp"
124 - android:layout_height="14dp"
125 - android:src="@drawable/ic_pin_location" />
126 -
127 - <TextView
128 - android:id="@+id/tv_pin_address"
129 - android:layout_width="184dp"
130 - android:layout_height="wrap_content"
131 - android:layout_marginStart="12dp"
132 - android:maxLines="2"
133 - android:textColor="@color/grey"
134 - android:textSize="14sp"
135 - tools:text="ΕΘΝΙΚΗΣ ΑΝΤΙΣΤΑΣΕΩΣ 4 41" />
136 - </LinearLayout>
137 -
138 - <LinearLayout
139 - android:id="@+id/ll_directions"
140 - android:layout_width="wrap_content"
141 - android:layout_height="wrap_content"
142 - android:layout_alignParentEnd="true"
143 - android:layout_centerVertical="true"
144 - android:background="@drawable/selector_button_green"
145 - android:gravity="center"
146 - android:orientation="horizontal"
147 - android:paddingHorizontal="20dp"
148 - android:paddingVertical="8dp">
149 -
150 - <ImageView
151 - android:layout_width="14dp"
152 - android:layout_height="14dp"
153 - android:src="@drawable/ic_pin_compass" />
154 -
155 - <TextView
156 - android:id="@+id/tv_directions"
157 - android:layout_width="wrap_content"
158 - android:layout_height="wrap_content"
159 - android:layout_marginStart="8dp"
160 - android:gravity="center"
161 - android:text="@string/cos_directions"
162 - android:textColor="@color/white"
163 - android:textSize="14dp" />
164 - </LinearLayout>
165 - </RelativeLayout>
166 -
167 -</LinearLayout>
...\ No newline at end of file ...\ No newline at end of file
1 -<?xml version="1.0" encoding="utf-8"?>
2 -<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 - android:id="@+id/rl_share_dialog_view"
4 - android:layout_width="match_parent"
5 - android:layout_height="match_parent"
6 - android:orientation="vertical"
7 - android:background="@drawable/shape_cos_white_rounded_top">
8 -
9 - <RelativeLayout
10 - android:id="@+id/rl_sender_list"
11 - android:layout_width="match_parent"
12 - android:layout_height="wrap_content"
13 - android:layout_marginBottom="24dp"
14 - android:paddingTop="16dp">
15 -
16 - <TextView
17 - android:id="@+id/tv_sender_value"
18 - android:layout_width="wrap_content"
19 - android:layout_height="wrap_content"
20 - android:layout_alignParentStart="true"
21 - android:layout_marginStart="24dp"
22 - android:text="@string/cos_coupon_share_sender"
23 - android:textColor="@color/cos_light_black"
24 - android:textSize="16sp" />
25 -
26 - <ImageView
27 - android:id="@+id/iv_sender_list_close"
28 - android:layout_width="16dp"
29 - android:layout_height="16dp"
30 - android:layout_alignParentEnd="true"
31 - android:layout_marginEnd="24dp"
32 - android:src="@drawable/ic_close" />
33 - </RelativeLayout>
34 -
35 - <LinearLayout
36 - android:id="@+id/ll_share_dialog_view_inner"
37 - android:layout_width="match_parent"
38 - android:layout_height="wrap_content"
39 - android:layout_marginHorizontal="12dp"
40 - android:orientation="vertical">
41 -
42 - </LinearLayout>
43 -</LinearLayout>
...\ No newline at end of file ...\ No newline at end of file
1 -<?xml version="1.0" encoding="utf-8"?>
2 -<RelativeLayout 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="wrap_content"
7 - android:layout_gravity="center_horizontal"
8 - android:paddingHorizontal="16dp"
9 - android:paddingVertical="56dp">
10 -
11 - <TextView
12 - android:id="@+id/tv_dl_title"
13 - android:layout_width="match_parent"
14 - android:layout_height="55dp"
15 - android:layout_alignParentStart="true"
16 - android:layout_alignParentTop="true"
17 - android:layout_alignParentEnd="true"
18 - android:layout_marginHorizontal="48dp"
19 - android:gravity="center"
20 - tools:text="@string/cos_dlg_success_title"
21 - android:textColor="#0072C9"
22 - android:textSize="25sp"
23 - android:textStyle="bold"
24 - app:layout_constraintTop_toTopOf="parent" />
25 -
26 - <TextView
27 - android:id="@+id/tv_dl_subtitle"
28 - android:layout_width="match_parent"
29 - android:layout_height="wrap_content"
30 - android:layout_below="@+id/tv_dl_title"
31 - android:layout_alignParentStart="true"
32 - android:layout_alignParentEnd="true"
33 - android:layout_marginHorizontal="48dp"
34 - android:layout_marginTop="16dp"
35 - android:layout_marginBottom="24dp"
36 - android:gravity="center"
37 - tools:text="@string/cos_dlg_success_subtitle"
38 - android:textColor="#5B5B5B"
39 - android:textFontWeight="500"
40 - android:textSize="18sp" />
41 -
42 - <LinearLayout
43 - android:id="@+id/ll_dl_redeem"
44 - android:layout_width="match_parent"
45 - android:layout_height="50dp"
46 - android:layout_below="@+id/tv_dl_subtitle"
47 - android:layout_marginHorizontal="32dp"
48 - android:layout_marginTop="24dp"
49 - android:background="@drawable/selector_button_green"
50 - android:gravity="center"
51 - android:orientation="horizontal">
52 -
53 - <TextView
54 - android:layout_width="wrap_content"
55 - android:layout_height="wrap_content"
56 - android:gravity="center"
57 - android:text="ΟΚ"
58 - android:textColor="@color/white"
59 - android:textSize="17dp"
60 - android:textStyle="bold" />
61 - </LinearLayout>
62 -
63 -</RelativeLayout>
...\ No newline at end of file ...\ No newline at end of file
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
25 android:paddingHorizontal="16dp" 25 android:paddingHorizontal="16dp"
26 android:paddingTop="8dp"> 26 android:paddingTop="8dp">
27 27
28 - <de.hdodenhof.circleimageview.CircleImageView 28 + <ImageView
29 android:id="@+id/user_img" 29 android:id="@+id/user_img"
30 android:layout_width="60dp" 30 android:layout_width="60dp"
31 android:layout_height="60dp" 31 android:layout_height="60dp"
......
1 -<?xml version="1.0" encoding="utf-8"?>
2 -
3 -<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
4 - xmlns:app="http://schemas.android.com/apk/res-auto"
5 - xmlns:tools="http://schemas.android.com/tools"
6 - android:layout_width="match_parent"
7 - android:layout_height="match_parent"
8 - android:fillViewport="true"
9 - android:background="@android:color/white">
10 -
11 - <LinearLayout
12 - android:layout_width="match_parent"
13 - android:layout_height="match_parent"
14 - android:orientation="vertical">
15 -
16 - <androidx.constraintlayout.widget.ConstraintLayout
17 - android:id="@+id/cl_header"
18 - android:layout_width="match_parent"
19 - android:layout_height="90dp"
20 - android:paddingHorizontal="16dp">
21 -
22 - <de.hdodenhof.circleimageview.CircleImageView
23 - android:id="@+id/iv_profile_photo"
24 - android:layout_width="60dp"
25 - android:layout_height="60dp"
26 - android:src="@drawable/profile_photo"
27 - app:layout_constraintBottom_toBottomOf="parent"
28 - app:layout_constraintLeft_toLeftOf="parent"
29 - app:layout_constraintTop_toTopOf="parent" />
30 -
31 - <TextView
32 - android:id="@+id/tv_name"
33 - android:layout_width="wrap_content"
34 - android:layout_height="wrap_content"
35 - android:layout_marginStart="8dp"
36 - android:layout_marginTop="6dp"
37 - android:maxLines="1"
38 - android:textColor="@color/grey"
39 - app:layout_constraintLeft_toRightOf="@+id/iv_profile_photo"
40 - app:layout_constraintTop_toTopOf="@+id/iv_profile_photo"
41 - tools:text="Test Name" />
42 -
43 - <LinearLayout
44 - android:layout_width="wrap_content"
45 - android:layout_height="wrap_content"
46 - android:layout_marginStart="8dp"
47 - android:layout_marginBottom="10dp"
48 - android:background="@drawable/shape_cos_gradient"
49 - android:gravity="center"
50 - android:paddingHorizontal="4dp"
51 - app:layout_constraintBottom_toBottomOf="@+id/iv_profile_photo"
52 - app:layout_constraintLeft_toRightOf="@+id/iv_profile_photo">
53 -
54 - <TextView
55 - android:id="@+id/tv_type"
56 - android:layout_width="wrap_content"
57 - android:layout_height="wrap_content"
58 - android:text="@string/cos_profile_type"
59 - android:textColor="@android:color/white" />
60 - </LinearLayout>
61 -
62 - <androidx.constraintlayout.widget.ConstraintLayout
63 - android:id="@+id/cl_rewards_wallet"
64 - android:layout_width="wrap_content"
65 - android:layout_height="wrap_content"
66 - app:layout_constraintRight_toRightOf="parent"
67 - app:layout_constraintTop_toTopOf="@+id/tv_name">
68 -
69 - <TextView
70 - android:id="@+id/tv_rewards"
71 - android:layout_width="wrap_content"
72 - android:layout_height="wrap_content"
73 - android:layout_marginEnd="12dp"
74 - android:gravity="end"
75 - android:text="@string/cos_profile_reward"
76 - android:textColor="@color/grey"
77 - android:textSize="16sp"
78 - android:textStyle="bold"
79 - app:layout_constraintRight_toLeftOf="@+id/iv_rewards_wallet"
80 - app:layout_constraintTop_toTopOf="parent" />
81 -
82 - <ImageView
83 - android:id="@+id/iv_rewards_wallet"
84 - android:layout_width="40dp"
85 - android:layout_height="40dp"
86 - android:src="@drawable/ic_rewards_wallet"
87 - app:layout_constraintBottom_toBottomOf="parent"
88 - app:layout_constraintRight_toRightOf="parent"
89 - app:layout_constraintTop_toTopOf="parent" />
90 - </androidx.constraintlayout.widget.ConstraintLayout>
91 - </androidx.constraintlayout.widget.ConstraintLayout>
92 -
93 - <RelativeLayout
94 - android:layout_width="match_parent"
95 - android:layout_height="match_parent"
96 - android:background="@drawable/shape_cos_loyalty"
97 - android:orientation="vertical"
98 - android:paddingBottom="24dp">
99 -
100 - <androidx.constraintlayout.widget.ConstraintLayout
101 - android:id="@+id/cl_recycler_inner"
102 - android:layout_width="match_parent"
103 - android:layout_height="wrap_content"
104 - android:layout_marginTop="36dp"
105 - android:paddingBottom="4dp"
106 - app:layout_constraintLeft_toLeftOf="parent"
107 - app:layout_constraintRight_toRightOf="parent"
108 - app:layout_constraintTop_toTopOf="parent">
109 -
110 - <ImageView
111 - android:id="@+id/iv_deals_logo"
112 - android:layout_width="100dp"
113 - android:layout_height="wrap_content"
114 - android:layout_marginStart="10dp"
115 - android:src="@drawable/ic_deals_logo_new"
116 - app:layout_constraintStart_toStartOf="parent"
117 - app:layout_constraintTop_toTopOf="parent" />
118 -
119 - <ImageView
120 - android:id="@+id/iv_more"
121 - android:layout_width="20dp"
122 - android:layout_height="20dp"
123 - android:layout_marginEnd="24dp"
124 - android:src="@drawable/ic_arrow_right_white"
125 - app:layout_constraintBottom_toBottomOf="@+id/iv_deals_logo"
126 - app:layout_constraintEnd_toEndOf="parent"
127 - app:layout_constraintTop_toTopOf="@+id/iv_deals_logo" />
128 -
129 - <androidx.recyclerview.widget.RecyclerView
130 - android:id="@+id/rv_deals"
131 - android:layout_width="match_parent"
132 - android:layout_height="wrap_content"
133 - android:layout_marginTop="24dp"
134 - android:clipToPadding="false"
135 - android:orientation="horizontal"
136 - android:paddingEnd="10dp"
137 - app:layout_constraintBottom_toBottomOf="parent"
138 - app:layout_constraintLeft_toLeftOf="parent"
139 - app:layout_constraintRight_toRightOf="parent"
140 - app:layout_constraintTop_toBottomOf="@+id/iv_deals_logo" />
141 - </androidx.constraintlayout.widget.ConstraintLayout>
142 -
143 -
144 - <androidx.constraintlayout.widget.ConstraintLayout
145 - android:id="@+id/cl_recycler_inner2"
146 - android:layout_width="match_parent"
147 - android:layout_height="wrap_content"
148 - android:layout_below="@+id/cl_recycler_inner"
149 - android:layout_marginTop="36dp"
150 - android:paddingBottom="4dp"
151 - app:layout_constraintLeft_toLeftOf="parent"
152 - app:layout_constraintRight_toRightOf="parent"
153 - app:layout_constraintTop_toTopOf="parent">
154 -
155 - <TextView
156 - android:id="@+id/tv_gifts_title"
157 - android:layout_width="wrap_content"
158 - android:layout_height="wrap_content"
159 - android:layout_marginStart="10dp"
160 - android:text="@string/cos_gifts_title"
161 - android:textColor="@android:color/white"
162 - android:textSize="18sp"
163 - android:textStyle="bold"
164 - app:layout_constraintStart_toStartOf="parent"
165 - app:layout_constraintTop_toTopOf="parent" />
166 -
167 - <ImageView
168 - android:id="@+id/iv_more2"
169 - android:layout_width="20dp"
170 - android:layout_height="20dp"
171 - android:layout_marginEnd="24dp"
172 - android:src="@drawable/ic_arrow_right_white"
173 - app:layout_constraintBottom_toBottomOf="@+id/tv_gifts_title"
174 - app:layout_constraintEnd_toEndOf="parent"
175 - app:layout_constraintTop_toTopOf="@+id/tv_gifts_title" />
176 -
177 - <androidx.recyclerview.widget.RecyclerView
178 - android:id="@+id/rv_gifts"
179 - android:layout_width="match_parent"
180 - android:layout_height="wrap_content"
181 - android:layout_marginTop="24dp"
182 - android:clipToPadding="false"
183 - android:orientation="horizontal"
184 - android:paddingEnd="10dp"
185 - app:layout_constraintBottom_toBottomOf="parent"
186 - app:layout_constraintLeft_toLeftOf="parent"
187 - app:layout_constraintRight_toRightOf="parent"
188 - app:layout_constraintTop_toBottomOf="@+id/tv_gifts_title" />
189 - </androidx.constraintlayout.widget.ConstraintLayout>
190 -
191 - <androidx.constraintlayout.widget.ConstraintLayout
192 - android:id="@+id/cl_recycler_inner3"
193 - android:layout_width="match_parent"
194 - android:layout_height="wrap_content"
195 - android:layout_below="@+id/cl_recycler_inner2"
196 - android:layout_marginTop="36dp"
197 - android:paddingBottom="4dp"
198 - app:layout_constraintLeft_toLeftOf="parent"
199 - app:layout_constraintRight_toRightOf="parent"
200 - app:layout_constraintTop_toTopOf="parent">
201 -
202 - <TextView
203 - android:id="@+id/tv_more_title"
204 - android:layout_width="wrap_content"
205 - android:layout_height="wrap_content"
206 - android:layout_marginStart="10dp"
207 - android:text="@string/cos_more_title"
208 - android:textColor="@android:color/white"
209 - android:textSize="18sp"
210 - android:textStyle="bold"
211 - app:layout_constraintStart_toStartOf="parent"
212 - app:layout_constraintTop_toTopOf="parent" />
213 -
214 - <ImageView
215 - android:id="@+id/iv_more3"
216 - android:layout_width="20dp"
217 - android:layout_height="20dp"
218 - android:layout_marginEnd="24dp"
219 - android:src="@drawable/ic_arrow_right_white"
220 - app:layout_constraintBottom_toBottomOf="@+id/tv_more_title"
221 - app:layout_constraintEnd_toEndOf="parent"
222 - app:layout_constraintTop_toTopOf="@+id/tv_more_title" />
223 -
224 - <androidx.recyclerview.widget.RecyclerView
225 - android:id="@+id/rv_more"
226 - android:layout_width="match_parent"
227 - android:layout_height="wrap_content"
228 - android:layout_marginTop="24dp"
229 - android:clipToPadding="false"
230 - android:orientation="horizontal"
231 - android:paddingEnd="10dp"
232 - app:layout_constraintBottom_toBottomOf="parent"
233 - app:layout_constraintLeft_toLeftOf="parent"
234 - app:layout_constraintRight_toRightOf="parent"
235 - app:layout_constraintTop_toBottomOf="@+id/tv_more_title" />
236 - </androidx.constraintlayout.widget.ConstraintLayout>
237 - </RelativeLayout>
238 - </LinearLayout>
239 -</ScrollView>
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="@color/white">
7 -
8 - <LinearLayout
9 - android:id="@+id/ll_second_view"
10 - android:layout_width="match_parent"
11 - android:layout_height="match_parent"
12 - android:gravity="center_horizontal"
13 - android:orientation="vertical">
14 -
15 - <LinearLayout
16 - android:id="@+id/ll_banner_info_new"
17 - android:layout_width="match_parent"
18 - android:layout_height="wrap_content"
19 - android:layout_marginHorizontal="14dp"
20 - android:layout_marginTop="16dp"
21 - android:orientation="vertical">
22 -
23 - <LinearLayout
24 - android:layout_width="match_parent"
25 - android:layout_height="wrap_content"
26 - android:orientation="horizontal"
27 - android:weightSum="1">
28 -
29 - <TextView
30 - android:id="@+id/tv_coupons_header"
31 - android:layout_width="wrap_content"
32 - android:layout_height="wrap_content"
33 - android:layout_weight="1"
34 - android:includeFontPadding="false"
35 - android:maxLines="1"
36 - android:text="@string/cos_coupons_header"
37 - android:textColor="@color/cos_light_black"
38 - android:textSize="20sp" />
39 -
40 - <ImageView
41 - android:id="@+id/iv_loyalty_history"
42 - android:layout_width="24dp"
43 - android:layout_height="24dp"
44 - android:src="@drawable/ic_history_black"
45 - app:layout_constraintBottom_toBottomOf="parent"
46 - app:layout_constraintStart_toStartOf="parent"
47 - app:layout_constraintTop_toTopOf="parent" />
48 - </LinearLayout>
49 - </LinearLayout>
50 -
51 - <HorizontalScrollView
52 - android:id="@+id/scr_tiles"
53 - android:layout_width="match_parent"
54 - android:layout_height="wrap_content"
55 - android:layout_marginTop="18dp"
56 - android:fillViewport="true"
57 - android:scrollbars="none">
58 -
59 - <LinearLayout
60 - android:id="@+id/ll_tiles_parent"
61 - android:layout_width="match_parent"
62 - android:layout_height="wrap_content"
63 - android:clipToPadding="false"
64 - android:divider="@drawable/divider_vertical"
65 - android:orientation="horizontal"
66 - android:paddingHorizontal="14dp"
67 - android:showDividers="middle">
68 -
69 - <!-- <RelativeLayout-->
70 - <!-- android:id="@+id/rv_deals_count"-->
71 - <!-- android:layout_width="104dp"-->
72 - <!-- android:layout_height="104dp">-->
73 -
74 - <!-- <androidx.cardview.widget.CardView-->
75 - <!-- android:id="@+id/cv_deals_count"-->
76 - <!-- android:layout_width="match_parent"-->
77 - <!-- android:layout_height="match_parent"-->
78 - <!-- android:layout_marginHorizontal="2dp"-->
79 - <!-- android:layout_marginVertical="4dp"-->
80 - <!-- app:cardCornerRadius="16dp"-->
81 - <!-- app:cardElevation="2dp">-->
82 -
83 - <!-- <androidx.constraintlayout.widget.ConstraintLayout-->
84 - <!-- android:layout_width="match_parent"-->
85 - <!-- android:layout_height="match_parent"-->
86 - <!-- android:background="@color/white">-->
87 -
88 - <!-- <ImageView-->
89 - <!-- android:id="@+id/iv_deals_logo_count"-->
90 - <!-- android:layout_width="52dp"-->
91 - <!-- android:layout_height="32dp"-->
92 - <!-- android:src="@drawable/sv_deals_logo_redesign"-->
93 - <!-- app:layout_constraintBottom_toTopOf="@+id/v_separator_deals_count"-->
94 - <!-- app:layout_constraintEnd_toEndOf="parent"-->
95 - <!-- app:layout_constraintStart_toStartOf="parent"-->
96 - <!-- app:layout_constraintTop_toTopOf="parent" />-->
97 -
98 - <!-- <View-->
99 - <!-- android:id="@+id/v_separator_deals_count"-->
100 - <!-- android:layout_width="match_parent"-->
101 - <!-- android:layout_height="1dp"-->
102 - <!-- android:layout_marginHorizontal="8dp"-->
103 - <!-- android:background="@color/cos_grey2"-->
104 - <!-- app:layout_constraintBottom_toBottomOf="parent"-->
105 - <!-- app:layout_constraintEnd_toEndOf="parent"-->
106 - <!-- app:layout_constraintStart_toStartOf="parent"-->
107 - <!-- app:layout_constraintTop_toTopOf="parent" />-->
108 -
109 - <!-- <TextView-->
110 - <!-- android:id="@+id/tv_deals_count_title"-->
111 - <!-- fontPath="fonts/PeridotPE-SemiBold.ttf"-->
112 - <!-- android:layout_width="0dp"-->
113 - <!-- android:layout_height="wrap_content"-->
114 - <!-- android:layout_marginHorizontal="8dp"-->
115 - <!-- android:gravity="center"-->
116 - <!-- android:includeFontPadding="false"-->
117 - <!-- android:text="@string/cos_deals_tile"-->
118 - <!-- android:textColor="@color/cos_light_black"-->
119 - <!-- android:textSize="10sp"-->
120 - <!-- app:layout_constraintBottom_toBottomOf="parent"-->
121 - <!-- app:layout_constraintEnd_toEndOf="parent"-->
122 - <!-- app:layout_constraintStart_toStartOf="parent"-->
123 - <!-- app:layout_constraintTop_toBottomOf="@+id/v_separator_deals_count" />-->
124 - <!-- </androidx.constraintlayout.widget.ConstraintLayout>-->
125 - <!-- </androidx.cardview.widget.CardView>-->
126 -
127 - <!-- <LinearLayout-->
128 - <!-- android:layout_width="16dp"-->
129 - <!-- android:layout_height="16dp"-->
130 - <!-- android:layout_alignParentEnd="true"-->
131 - <!-- android:layout_marginTop="4dp"-->
132 - <!-- android:layout_marginEnd="1dp"-->
133 - <!-- android:background="@drawable/shape_cos_counter_orange"-->
134 - <!-- android:gravity="center"-->
135 - <!-- android:orientation="vertical"-->
136 - <!-- android:translationZ="2dp"-->
137 - <!-- app:layout_constraintEnd_toEndOf="parent"-->
138 - <!-- app:layout_constraintTop_toTopOf="parent">-->
139 -
140 - <!-- <TextView-->
141 - <!-- android:id="@+id/tv_deals_count"-->
142 - <!-- fontPath="fonts/PeridotPE-SemiBold.ttf"-->
143 - <!-- android:layout_width="wrap_content"-->
144 - <!-- android:layout_height="16dp"-->
145 - <!-- android:includeFontPadding="false"-->
146 - <!-- android:maxLines="1"-->
147 - <!-- android:textColor="@color/cos_light_black"-->
148 - <!-- android:textSize="12sp"-->
149 - <!-- tools:text="6" />-->
150 - <!-- </LinearLayout>-->
151 - <!-- </RelativeLayout>-->
152 -
153 - <!-- <RelativeLayout-->
154 - <!-- android:id="@+id/rv_sm_count"-->
155 - <!-- android:layout_width="104dp"-->
156 - <!-- android:layout_height="104dp">-->
157 -
158 - <!-- <androidx.cardview.widget.CardView-->
159 - <!-- android:id="@+id/cv_sm_count"-->
160 - <!-- android:layout_width="match_parent"-->
161 - <!-- android:layout_height="match_parent"-->
162 - <!-- android:layout_marginHorizontal="2dp"-->
163 - <!-- android:layout_marginVertical="4dp"-->
164 - <!-- app:cardCornerRadius="16dp"-->
165 - <!-- app:cardElevation="2dp">-->
166 -
167 - <!-- <androidx.constraintlayout.widget.ConstraintLayout-->
168 - <!-- android:layout_width="match_parent"-->
169 - <!-- android:layout_height="match_parent"-->
170 - <!-- android:background="@color/white">-->
171 -
172 - <!-- <ImageView-->
173 - <!-- android:id="@+id/iv_sm_logo_count"-->
174 - <!-- android:layout_width="32dp"-->
175 - <!-- android:layout_height="32dp"-->
176 - <!-- android:src="@drawable/sv_unified_redesign"-->
177 - <!-- app:layout_constraintBottom_toTopOf="@+id/v_separator_sm_count"-->
178 - <!-- app:layout_constraintEnd_toEndOf="parent"-->
179 - <!-- app:layout_constraintStart_toStartOf="parent"-->
180 - <!-- app:layout_constraintTop_toTopOf="parent" />-->
181 -
182 - <!-- <View-->
183 - <!-- android:id="@+id/v_separator_sm_count"-->
184 - <!-- android:layout_width="match_parent"-->
185 - <!-- android:layout_height="1dp"-->
186 - <!-- android:layout_marginHorizontal="8dp"-->
187 - <!-- android:background="@color/cos_grey2"-->
188 - <!-- app:layout_constraintBottom_toBottomOf="parent"-->
189 - <!-- app:layout_constraintEnd_toEndOf="parent"-->
190 - <!-- app:layout_constraintStart_toStartOf="parent"-->
191 - <!-- app:layout_constraintTop_toTopOf="parent" />-->
192 -
193 - <!-- <TextView-->
194 - <!-- android:id="@+id/tv_sm_count_title"-->
195 - <!-- fontPath="fonts/PeridotPE-SemiBold.ttf"-->
196 - <!-- android:layout_width="0dp"-->
197 - <!-- android:layout_height="wrap_content"-->
198 - <!-- android:layout_marginHorizontal="8dp"-->
199 - <!-- android:gravity="center"-->
200 - <!-- android:includeFontPadding="false"-->
201 - <!-- android:text="@string/cos_market_title"-->
202 - <!-- android:textColor="@color/cos_light_black"-->
203 - <!-- android:textSize="10sp"-->
204 - <!-- app:layout_constraintBottom_toBottomOf="parent"-->
205 - <!-- app:layout_constraintEnd_toEndOf="parent"-->
206 - <!-- app:layout_constraintStart_toStartOf="parent"-->
207 - <!-- app:layout_constraintTop_toBottomOf="@+id/v_separator_sm_count" />-->
208 - <!-- </androidx.constraintlayout.widget.ConstraintLayout>-->
209 - <!-- </androidx.cardview.widget.CardView>-->
210 -
211 - <!-- <LinearLayout-->
212 - <!-- android:layout_width="16dp"-->
213 - <!-- android:layout_height="16dp"-->
214 - <!-- android:layout_alignParentEnd="true"-->
215 - <!-- android:layout_marginTop="4dp"-->
216 - <!-- android:layout_marginEnd="1dp"-->
217 - <!-- android:background="@drawable/shape_cos_counter_orange"-->
218 - <!-- android:gravity="center"-->
219 - <!-- android:orientation="vertical"-->
220 - <!-- android:translationZ="2dp"-->
221 - <!-- app:layout_constraintEnd_toEndOf="parent"-->
222 - <!-- app:layout_constraintTop_toTopOf="parent">-->
223 -
224 - <!-- <TextView-->
225 - <!-- android:id="@+id/tv_sm_count"-->
226 - <!-- fontPath="fonts/PeridotPE-SemiBold.ttf"-->
227 - <!-- android:layout_width="wrap_content"-->
228 - <!-- android:layout_height="16dp"-->
229 - <!-- android:includeFontPadding="false"-->
230 - <!-- android:maxLines="1"-->
231 - <!-- android:textColor="@color/cos_light_black"-->
232 - <!-- android:textSize="12sp"-->
233 - <!-- tools:text="6" />-->
234 - <!-- </LinearLayout>-->
235 - <!-- </RelativeLayout>-->
236 -
237 - <!-- <RelativeLayout-->
238 - <!-- android:id="@+id/rv_gifts_count"-->
239 - <!-- android:layout_width="104dp"-->
240 - <!-- android:layout_height="104dp">-->
241 -
242 - <!-- <androidx.cardview.widget.CardView-->
243 - <!-- android:id="@+id/cv_gifts_count"-->
244 - <!-- android:layout_width="match_parent"-->
245 - <!-- android:layout_height="match_parent"-->
246 - <!-- android:layout_marginHorizontal="2dp"-->
247 - <!-- android:layout_marginVertical="4dp"-->
248 - <!-- app:cardCornerRadius="16dp"-->
249 - <!-- app:cardElevation="2dp">-->
250 -
251 - <!-- <androidx.constraintlayout.widget.ConstraintLayout-->
252 - <!-- android:layout_width="match_parent"-->
253 - <!-- android:layout_height="match_parent"-->
254 - <!-- android:background="@color/white">-->
255 -
256 - <!-- <ImageView-->
257 - <!-- android:id="@+id/iv_gifts_logo_count"-->
258 - <!-- android:layout_width="34dp"-->
259 - <!-- android:layout_height="34dp"-->
260 - <!-- android:src="@drawable/sv_gifts_redesign"-->
261 - <!-- app:layout_constraintBottom_toTopOf="@+id/v_separator_gifts_count"-->
262 - <!-- app:layout_constraintEnd_toEndOf="parent"-->
263 - <!-- app:layout_constraintStart_toStartOf="parent"-->
264 - <!-- app:layout_constraintTop_toTopOf="parent" />-->
265 -
266 - <!-- <View-->
267 - <!-- android:id="@+id/v_separator_gifts_count"-->
268 - <!-- android:layout_width="match_parent"-->
269 - <!-- android:layout_height="1dp"-->
270 - <!-- android:layout_marginHorizontal="8dp"-->
271 - <!-- android:background="@color/cos_grey2"-->
272 - <!-- app:layout_constraintBottom_toBottomOf="parent"-->
273 - <!-- app:layout_constraintEnd_toEndOf="parent"-->
274 - <!-- app:layout_constraintStart_toStartOf="parent"-->
275 - <!-- app:layout_constraintTop_toTopOf="parent" />-->
276 -
277 - <!-- <TextView-->
278 - <!-- android:id="@+id/tv_gifts_count_title"-->
279 - <!-- fontPath="fonts/PeridotPE-SemiBold.ttf"-->
280 - <!-- android:layout_width="0dp"-->
281 - <!-- android:layout_height="wrap_content"-->
282 - <!-- android:layout_marginHorizontal="8dp"-->
283 - <!-- android:gravity="center"-->
284 - <!-- android:includeFontPadding="false"-->
285 - <!-- android:text="@string/cos_free_coupons_tile"-->
286 - <!-- android:textColor="@color/cos_light_black"-->
287 - <!-- android:textSize="10sp"-->
288 - <!-- app:layout_constraintBottom_toBottomOf="parent"-->
289 - <!-- app:layout_constraintEnd_toEndOf="parent"-->
290 - <!-- app:layout_constraintStart_toStartOf="parent"-->
291 - <!-- app:layout_constraintTop_toBottomOf="@+id/v_separator_gifts_count" />-->
292 - <!-- </androidx.constraintlayout.widget.ConstraintLayout>-->
293 - <!-- </androidx.cardview.widget.CardView>-->
294 -
295 - <!-- <LinearLayout-->
296 - <!-- android:layout_width="16dp"-->
297 - <!-- android:layout_height="16dp"-->
298 - <!-- android:layout_alignParentEnd="true"-->
299 - <!-- android:layout_marginTop="4dp"-->
300 - <!-- android:layout_marginEnd="1dp"-->
301 - <!-- android:background="@drawable/shape_cos_counter_orange"-->
302 - <!-- android:gravity="center"-->
303 - <!-- android:orientation="vertical"-->
304 - <!-- android:translationZ="2dp"-->
305 - <!-- app:layout_constraintEnd_toEndOf="parent"-->
306 - <!-- app:layout_constraintTop_toTopOf="parent">-->
307 -
308 - <!-- <TextView-->
309 - <!-- android:id="@+id/tv_gifts_count"-->
310 - <!-- fontPath="fonts/PeridotPE-SemiBold.ttf"-->
311 - <!-- android:layout_width="wrap_content"-->
312 - <!-- android:layout_height="16dp"-->
313 - <!-- android:includeFontPadding="false"-->
314 - <!-- android:maxLines="1"-->
315 - <!-- android:textColor="@color/cos_light_black"-->
316 - <!-- android:textSize="12sp"-->
317 - <!-- tools:text="6" />-->
318 - <!-- </LinearLayout>-->
319 - <!-- </RelativeLayout>-->
320 -
321 - <!-- <RelativeLayout-->
322 - <!-- android:id="@+id/rv_box_count"-->
323 - <!-- android:layout_width="104dp"-->
324 - <!-- android:layout_height="104dp">-->
325 -
326 - <!-- <androidx.cardview.widget.CardView-->
327 - <!-- android:id="@+id/cv_box_count"-->
328 - <!-- android:layout_width="match_parent"-->
329 - <!-- android:layout_height="match_parent"-->
330 - <!-- android:layout_marginHorizontal="2dp"-->
331 - <!-- android:layout_marginVertical="4dp"-->
332 - <!-- app:cardCornerRadius="16dp"-->
333 - <!-- app:cardElevation="2dp">-->
334 -
335 - <!-- <androidx.constraintlayout.widget.ConstraintLayout-->
336 - <!-- android:layout_width="match_parent"-->
337 - <!-- android:layout_height="match_parent"-->
338 - <!-- android:background="@color/white">-->
339 -
340 - <!-- <ImageView-->
341 - <!-- android:id="@+id/iv_box_logo_count"-->
342 - <!-- android:layout_width="34dp"-->
343 - <!-- android:layout_height="34dp"-->
344 - <!-- android:src="@drawable/sv_box_logo"-->
345 - <!-- app:layout_constraintBottom_toTopOf="@+id/v_separator_box_count"-->
346 - <!-- app:layout_constraintEnd_toEndOf="parent"-->
347 - <!-- app:layout_constraintStart_toStartOf="parent"-->
348 - <!-- app:layout_constraintTop_toTopOf="parent" />-->
349 -
350 - <!-- <View-->
351 - <!-- android:id="@+id/v_separator_box_count"-->
352 - <!-- android:layout_width="match_parent"-->
353 - <!-- android:layout_height="1dp"-->
354 - <!-- android:layout_marginHorizontal="8dp"-->
355 - <!-- android:background="@color/cos_grey2"-->
356 - <!-- app:layout_constraintBottom_toBottomOf="parent"-->
357 - <!-- app:layout_constraintEnd_toEndOf="parent"-->
358 - <!-- app:layout_constraintStart_toStartOf="parent"-->
359 - <!-- app:layout_constraintTop_toTopOf="parent" />-->
360 -
361 - <!-- <TextView-->
362 - <!-- android:id="@+id/tv_box_count_title"-->
363 - <!-- fontPath="fonts/PeridotPE-SemiBold.ttf"-->
364 - <!-- android:layout_width="0dp"-->
365 - <!-- android:layout_height="wrap_content"-->
366 - <!-- android:layout_marginHorizontal="8dp"-->
367 - <!-- android:gravity="center"-->
368 - <!-- android:includeFontPadding="false"-->
369 - <!-- android:text="@string/cos_box_tile"-->
370 - <!-- android:textColor="@color/cos_light_black"-->
371 - <!-- android:textSize="10sp"-->
372 - <!-- app:layout_constraintBottom_toBottomOf="parent"-->
373 - <!-- app:layout_constraintEnd_toEndOf="parent"-->
374 - <!-- app:layout_constraintStart_toStartOf="parent"-->
375 - <!-- app:layout_constraintTop_toBottomOf="@+id/v_separator_box_count" />-->
376 - <!-- </androidx.constraintlayout.widget.ConstraintLayout>-->
377 - <!-- </androidx.cardview.widget.CardView>-->
378 -
379 - <!-- <LinearLayout-->
380 - <!-- android:layout_width="16dp"-->
381 - <!-- android:layout_height="16dp"-->
382 - <!-- android:layout_alignParentEnd="true"-->
383 - <!-- android:layout_marginTop="4dp"-->
384 - <!-- android:layout_marginEnd="1dp"-->
385 - <!-- android:background="@drawable/shape_cos_counter_orange"-->
386 - <!-- android:gravity="center"-->
387 - <!-- android:orientation="vertical"-->
388 - <!-- android:translationZ="2dp"-->
389 - <!-- app:layout_constraintEnd_toEndOf="parent"-->
390 - <!-- app:layout_constraintTop_toTopOf="parent">-->
391 -
392 - <!-- <TextView-->
393 - <!-- android:id="@+id/tv_box_count"-->
394 - <!-- fontPath="fonts/PeridotPE-SemiBold.ttf"-->
395 - <!-- android:layout_width="wrap_content"-->
396 - <!-- android:layout_height="16dp"-->
397 - <!-- android:includeFontPadding="false"-->
398 - <!-- android:maxLines="1"-->
399 - <!-- android:textColor="@color/cos_light_black"-->
400 - <!-- android:textSize="12sp"-->
401 - <!-- tools:text="6" />-->
402 - <!-- </LinearLayout>-->
403 - <!-- </RelativeLayout>-->
404 - </LinearLayout>
405 - </HorizontalScrollView>
406 -
407 - <LinearLayout
408 - android:layout_width="match_parent"
409 - android:layout_height="wrap_content"
410 - android:layout_marginTop="20dp"
411 - android:gravity="center"
412 - android:orientation="horizontal">
413 -
414 - <View
415 - android:id="@+id/v_first_start"
416 - android:layout_width="12dp"
417 - android:layout_height="12dp"
418 - android:background="@drawable/shape_indicator" />
419 -
420 - <View
421 - android:id="@+id/v_first_end"
422 - android:layout_width="8dp"
423 - android:layout_height="8dp"
424 - android:background="@drawable/shape_indicator"
425 - android:visibility="gone" />
426 -
427 - <View
428 - android:layout_width="6dp"
429 - android:layout_height="12dp"
430 - android:background="@drawable/divider_vertical" />
431 -
432 - <View
433 - android:id="@+id/v_second_start"
434 - android:layout_width="12dp"
435 - android:layout_height="12dp"
436 - android:background="@drawable/shape_indicator"
437 - android:visibility="gone" />
438 -
439 - <View
440 - android:id="@+id/v_second_end"
441 - android:layout_width="8dp"
442 - android:layout_height="8dp"
443 - android:background="@drawable/shape_indicator" />
444 - </LinearLayout>
445 -
446 - <LinearLayout
447 - android:id="@+id/ll_empty_wallet"
448 - android:layout_width="match_parent"
449 - android:layout_height="wrap_content"
450 - android:layout_marginHorizontal="32dp"
451 - android:layout_marginTop="32dp"
452 - android:layout_marginBottom="12dp"
453 - android:gravity="center"
454 - android:orientation="vertical"
455 - android:visibility="gone"
456 - tools:visibility="gone">
457 -
458 - <ImageView
459 - android:layout_width="64dp"
460 - android:layout_height="64dp"
461 - android:src="@drawable/ic_empty_wallet" />
462 -
463 - <TextView
464 - android:id="@+id/empty_text"
465 - android:layout_width="wrap_content"
466 - android:layout_height="wrap_content"
467 - android:layout_marginTop="8dp"
468 - android:gravity="center"
469 - android:text="@string/cos_empty_wallet"
470 - android:textColor="@color/cos_light_black"
471 - android:textSize="14sp" />
472 - </LinearLayout>
473 -
474 - <androidx.constraintlayout.widget.ConstraintLayout
475 - android:id="@+id/ll_user_badge"
476 - android:layout_width="wrap_content"
477 - android:layout_height="34dp"
478 - android:layout_gravity="start"
479 - android:layout_marginHorizontal="14dp"
480 - android:layout_marginTop="20dp"
481 - android:background="@drawable/selector_button_green_border2"
482 - android:elevation="1dp"
483 - android:gravity="center"
484 - android:paddingHorizontal="16dp"
485 - android:visibility="gone"
486 - tools:visibility="gone">
487 -
488 - <TextView
489 - android:id="@+id/tv_type"
490 - android:layout_width="wrap_content"
491 - android:layout_height="wrap_content"
492 - android:includeFontPadding="false"
493 - android:textColor="@color/cos_green12"
494 - android:textSize="14sp"
495 - app:layout_constraintBottom_toBottomOf="parent"
496 - app:layout_constraintEnd_toEndOf="parent"
497 - app:layout_constraintStart_toStartOf="parent"
498 - app:layout_constraintTop_toTopOf="parent"
499 - tools:text="@string/cos_profile_preferences_placeholder" />
500 - </androidx.constraintlayout.widget.ConstraintLayout>
501 -
502 - <androidx.constraintlayout.widget.ConstraintLayout
503 - android:id="@+id/ll_user_badge_centered"
504 - android:layout_width="wrap_content"
505 - android:layout_height="34dp"
506 - android:layout_gravity="center_horizontal"
507 - android:layout_marginHorizontal="14dp"
508 - android:layout_marginTop="20dp"
509 - android:background="@drawable/selector_button_green_border2"
510 - android:elevation="1dp"
511 - android:gravity="center"
512 - android:paddingHorizontal="16dp"
513 - android:visibility="gone"
514 - tools:visibility="gone">
515 -
516 - <TextView
517 - android:id="@+id/tv_type_centered"
518 - android:layout_width="wrap_content"
519 - android:layout_height="wrap_content"
520 - android:includeFontPadding="false"
521 - android:textColor="@color/cos_green12"
522 - android:textSize="14sp"
523 - app:layout_constraintBottom_toBottomOf="parent"
524 - app:layout_constraintEnd_toEndOf="parent"
525 - app:layout_constraintStart_toStartOf="parent"
526 - app:layout_constraintTop_toTopOf="parent"
527 - tools:text="@string/cos_profile_preferences_placeholder" />
528 - </androidx.constraintlayout.widget.ConstraintLayout>
529 -
530 - <androidx.constraintlayout.widget.ConstraintLayout
531 - android:id="@+id/ll_user_questionnaire"
532 - android:layout_width="wrap_content"
533 - android:layout_height="34dp"
534 - android:layout_gravity="start"
535 - android:layout_marginHorizontal="14dp"
536 - android:layout_marginTop="20dp"
537 - android:background="@drawable/selector_button_green_border2"
538 - android:elevation="1dp"
539 - android:gravity="center"
540 - android:paddingHorizontal="16dp"
541 - android:visibility="gone"
542 - tools:visibility="gone">
543 -
544 - <ImageView
545 - android:id="@+id/iv_plus_questionnaire"
546 - android:layout_width="20dp"
547 - android:layout_height="20dp"
548 - android:src="@drawable/sv_plus_sign_green"
549 - app:layout_constraintBottom_toBottomOf="parent"
550 - app:layout_constraintStart_toStartOf="parent"
551 - app:layout_constraintTop_toTopOf="parent" />
552 -
553 - <TextView
554 - android:id="@+id/tv_questionnaire"
555 - android:layout_width="wrap_content"
556 - android:layout_height="wrap_content"
557 - android:layout_marginStart="8dp"
558 - android:includeFontPadding="false"
559 - android:text="@string/cos_profile_preferences"
560 - android:textColor="@color/cos_green12"
561 - android:textSize="14sp"
562 - app:layout_constraintBottom_toBottomOf="parent"
563 - app:layout_constraintEnd_toEndOf="parent"
564 - app:layout_constraintStart_toEndOf="@+id/iv_plus_questionnaire"
565 - app:layout_constraintTop_toTopOf="parent" />
566 - </androidx.constraintlayout.widget.ConstraintLayout>
567 -
568 - <androidx.constraintlayout.widget.ConstraintLayout
569 - android:id="@+id/ll_user_questionnaire_centered"
570 - android:layout_width="wrap_content"
571 - android:layout_height="34dp"
572 - android:layout_gravity="center_horizontal"
573 - android:layout_marginHorizontal="14dp"
574 - android:layout_marginTop="20dp"
575 - android:background="@drawable/selector_button_green_border2"
576 - android:elevation="1dp"
577 - android:gravity="center"
578 - android:paddingHorizontal="16dp"
579 - android:visibility="gone"
580 - tools:visibility="gone">
581 -
582 - <ImageView
583 - android:id="@+id/iv_plus_questionnaire_centered"
584 - android:layout_width="20dp"
585 - android:layout_height="20dp"
586 - android:src="@drawable/sv_plus_sign_green"
587 - app:layout_constraintBottom_toBottomOf="parent"
588 - app:layout_constraintStart_toStartOf="parent"
589 - app:layout_constraintTop_toTopOf="parent" />
590 -
591 - <TextView
592 - android:id="@+id/tv_questionnaire_centered"
593 - android:layout_width="wrap_content"
594 - android:layout_height="wrap_content"
595 - android:layout_marginStart="8dp"
596 - android:includeFontPadding="false"
597 - android:text="@string/cos_profile_preferences"
598 - android:textColor="@color/cos_green12"
599 - android:textSize="14sp"
600 - app:layout_constraintBottom_toBottomOf="parent"
601 - app:layout_constraintEnd_toEndOf="parent"
602 - app:layout_constraintStart_toEndOf="@+id/iv_plus_questionnaire_centered"
603 - app:layout_constraintTop_toTopOf="parent" />
604 - </androidx.constraintlayout.widget.ConstraintLayout>
605 -
606 - <!-- <androidx.constraintlayout.widget.ConstraintLayout-->
607 - <!-- android:id="@+id/ll_loyalty_history"-->
608 - <!-- android:layout_width="match_parent"-->
609 - <!-- android:layout_height="56dp"-->
610 - <!-- android:layout_marginHorizontal="14dp"-->
611 - <!-- android:layout_marginTop="6dp"-->
612 - <!-- android:background="@drawable/selector_button_grey_border"-->
613 - <!-- android:elevation="1dp"-->
614 - <!-- android:gravity="center"-->
615 - <!-- android:paddingHorizontal="16dp">-->
616 -
617 - <!-- <ImageView-->
618 - <!-- android:id="@+id/iv_history_icon"-->
619 - <!-- android:layout_width="24dp"-->
620 - <!-- android:layout_height="24dp"-->
621 - <!-- android:src="@drawable/ic_history_blue"-->
622 - <!-- app:layout_constraintBottom_toBottomOf="parent"-->
623 - <!-- app:layout_constraintStart_toStartOf="parent"-->
624 - <!-- app:layout_constraintTop_toTopOf="parent" />-->
625 -
626 - <!-- <TextView-->
627 - <!-- fontPath="fonts/PeridotPE-Regular.ttf"-->
628 - <!-- android:layout_width="0dp"-->
629 - <!-- android:layout_height="wrap_content"-->
630 - <!-- android:layout_marginHorizontal="8dp"-->
631 - <!-- android:includeFontPadding="false"-->
632 - <!-- android:text="@string/cos_profile_history"-->
633 - <!-- android:textColor="@color/cos_light_black"-->
634 - <!-- android:textSize="16sp"-->
635 - <!-- app:layout_constraintBottom_toBottomOf="parent"-->
636 - <!-- app:layout_constraintEnd_toStartOf="@+id/iv_right_history"-->
637 - <!-- app:layout_constraintStart_toEndOf="@+id/iv_history_icon"-->
638 - <!-- app:layout_constraintTop_toTopOf="parent" />-->
639 -
640 - <!-- <ImageView-->
641 - <!-- android:id="@+id/iv_right_history"-->
642 - <!-- android:layout_width="16dp"-->
643 - <!-- android:layout_height="16dp"-->
644 - <!-- android:src="@drawable/ic_right_black"-->
645 - <!-- app:layout_constraintBottom_toBottomOf="parent"-->
646 - <!-- app:layout_constraintEnd_toEndOf="parent"-->
647 - <!-- app:layout_constraintTop_toTopOf="parent" />-->
648 - <!-- </androidx.constraintlayout.widget.ConstraintLayout>-->
649 -
650 - <LinearLayout
651 - android:id="@+id/ll_vouchers_spinner"
652 - android:layout_width="match_parent"
653 - android:layout_height="wrap_content"
654 - android:layout_marginHorizontal="14dp"
655 - android:layout_marginTop="32dp"
656 - android:gravity="center_horizontal"
657 - android:orientation="vertical"
658 - android:visibility="gone"
659 - tools:visibility="gone">
660 -
661 - <ProgressBar
662 - android:id="@+id/pb_vouchers"
663 - android:layout_width="48dp"
664 - android:layout_height="48dp"
665 - android:theme="@style/progressBarBlue" />
666 - </LinearLayout>
667 -
668 - <LinearLayout
669 - android:id="@+id/ll_vouchers"
670 - android:layout_width="match_parent"
671 - android:layout_height="wrap_content"
672 - android:layout_marginHorizontal="14dp"
673 - android:layout_marginTop="32dp"
674 - android:orientation="vertical"
675 - android:visibility="gone"
676 - tools:visibility="gone">
677 -
678 - <TextView
679 - android:id="@+id/tv_vouchers_title"
680 - android:layout_width="wrap_content"
681 - android:layout_height="wrap_content"
682 - android:includeFontPadding="false"
683 - android:maxLines="1"
684 - android:text="@string/cos_vouchers_title"
685 - android:textColor="@color/cos_light_black"
686 - android:textSize="20sp" />
687 -
688 - <androidx.cardview.widget.CardView
689 - android:id="@+id/cv_vouchers"
690 - android:layout_width="match_parent"
691 - android:layout_height="60dp"
692 - android:layout_marginHorizontal="2dp"
693 - android:layout_marginTop="24dp"
694 - android:layout_marginBottom="4dp"
695 - app:cardCornerRadius="16dp"
696 - app:cardElevation="2dp">
697 -
698 - <androidx.constraintlayout.widget.ConstraintLayout
699 - android:layout_width="match_parent"
700 - android:layout_height="match_parent"
701 - android:background="@color/white">
702 -
703 - <ImageView
704 - android:id="@+id/iv_vouchers_logo"
705 - android:layout_width="32dp"
706 - android:layout_height="30dp"
707 - android:layout_marginStart="16dp"
708 - android:src="@drawable/sv_vouchers"
709 - app:layout_constraintBottom_toBottomOf="parent"
710 - app:layout_constraintStart_toStartOf="parent"
711 - app:layout_constraintTop_toTopOf="parent" />
712 -
713 - <TextView
714 - android:id="@+id/tv_vouchers_info_title"
715 - android:layout_width="0dp"
716 - android:layout_height="wrap_content"
717 - android:layout_marginHorizontal="8dp"
718 - android:includeFontPadding="false"
719 - android:text="@string/cos_vouchers_info_title"
720 - android:textColor="@color/cos_light_black"
721 - android:textSize="16sp"
722 - app:layout_constraintBottom_toBottomOf="@+id/iv_vouchers_logo"
723 - app:layout_constraintEnd_toStartOf="@+id/iv_vouchers_arrow"
724 - app:layout_constraintHorizontal_bias="0.0"
725 - app:layout_constraintStart_toEndOf="@+id/iv_vouchers_logo"
726 - app:layout_constraintTop_toTopOf="@+id/iv_vouchers_logo" />
727 -
728 - <ImageView
729 - android:id="@+id/iv_vouchers_arrow"
730 - android:layout_width="16dp"
731 - android:layout_height="16dp"
732 - android:layout_marginEnd="16dp"
733 - android:src="@drawable/ic_right_black"
734 - app:layout_constraintBottom_toBottomOf="parent"
735 - app:layout_constraintEnd_toEndOf="parent"
736 - app:layout_constraintTop_toTopOf="parent" />
737 - </androidx.constraintlayout.widget.ConstraintLayout>
738 - </androidx.cardview.widget.CardView>
739 - </LinearLayout>
740 -
741 - <LinearLayout
742 - android:id="@+id/ll_vouchers_disabled"
743 - android:layout_width="match_parent"
744 - android:layout_height="wrap_content"
745 - android:layout_marginHorizontal="14dp"
746 - android:layout_marginTop="32dp"
747 - android:orientation="vertical"
748 - android:visibility="gone"
749 - tools:visibility="gone">
750 -
751 - <TextView
752 - android:id="@+id/tv_vouchers_title_disabled"
753 - android:layout_width="wrap_content"
754 - android:layout_height="wrap_content"
755 - android:includeFontPadding="false"
756 - android:maxLines="1"
757 - android:text="@string/cos_vouchers_title"
758 - android:textColor="@color/cos_light_black"
759 - android:textSize="20sp" />
760 -
761 - <androidx.cardview.widget.CardView
762 - android:id="@+id/cv_vouchers_disabled"
763 - android:layout_width="match_parent"
764 - android:layout_height="60dp"
765 - android:layout_marginHorizontal="2dp"
766 - android:layout_marginTop="24dp"
767 - android:layout_marginBottom="4dp"
768 - app:cardCornerRadius="16dp"
769 - app:cardElevation="2dp">
770 -
771 - <androidx.constraintlayout.widget.ConstraintLayout
772 - android:layout_width="match_parent"
773 - android:layout_height="match_parent"
774 - android:background="@color/white">
775 -
776 - <ImageView
777 - android:id="@+id/iv_vouchers_logo_disabled"
778 - android:layout_width="32dp"
779 - android:layout_height="30dp"
780 - android:layout_marginStart="16dp"
781 - android:src="@drawable/sv_vouchers_disabled"
782 - app:layout_constraintBottom_toBottomOf="parent"
783 - app:layout_constraintStart_toStartOf="parent"
784 - app:layout_constraintTop_toTopOf="parent" />
785 -
786 - <TextView
787 - android:id="@+id/tv_vouchers_info_title_disabled"
788 - android:layout_width="wrap_content"
789 - android:layout_height="wrap_content"
790 - android:layout_marginHorizontal="8dp"
791 - android:includeFontPadding="false"
792 - android:text="@string/cos_vouchers_info_title_disabled"
793 - android:textColor="@color/cos_gray2"
794 - android:textSize="16sp"
795 - app:layout_constraintBottom_toBottomOf="@+id/iv_vouchers_logo_disabled"
796 - app:layout_constraintEnd_toStartOf="@+id/iv_vouchers_arrow_disabled"
797 - app:layout_constraintHorizontal_bias="0.0"
798 - app:layout_constraintStart_toEndOf="@+id/iv_vouchers_logo_disabled"
799 - app:layout_constraintTop_toTopOf="@+id/iv_vouchers_logo_disabled" />
800 -
801 - <ImageView
802 - android:id="@+id/iv_vouchers_arrow_disabled"
803 - android:layout_width="16dp"
804 - android:layout_height="16dp"
805 - android:layout_marginEnd="16dp"
806 - android:src="@drawable/ic_right_black"
807 - app:layout_constraintBottom_toBottomOf="parent"
808 - app:layout_constraintEnd_toEndOf="parent"
809 - app:layout_constraintTop_toTopOf="parent" />
810 -
811 - <LinearLayout
812 - android:layout_width="16dp"
813 - android:layout_height="16dp"
814 - android:layout_marginStart="2dp"
815 - android:background="@drawable/shape_cos_counter_orange"
816 - android:gravity="center"
817 - android:orientation="vertical"
818 - app:layout_constraintBottom_toTopOf="@+id/tv_vouchers_info_title_disabled"
819 - app:layout_constraintStart_toEndOf="@+id/tv_vouchers_info_title_disabled"
820 - app:layout_constraintTop_toTopOf="@+id/tv_vouchers_info_title_disabled">
821 -
822 - <TextView
823 - android:id="@+id/tv_vouchers_count_disabled"
824 - android:layout_width="wrap_content"
825 - android:layout_height="16dp"
826 - android:includeFontPadding="false"
827 - android:maxLines="1"
828 - android:text="0"
829 - android:textColor="@color/cos_light_black"
830 - android:textSize="12sp" />
831 - </LinearLayout>
832 - </androidx.constraintlayout.widget.ConstraintLayout>
833 - </androidx.cardview.widget.CardView>
834 - </LinearLayout>
835 - </LinearLayout>
836 -</RelativeLayout>
1 -<?xml version="1.0" encoding="utf-8"?>
2 -<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
3 - xmlns:app="http://schemas.android.com/apk/res-auto"
4 - android:layout_width="360dp"
5 - android:layout_height="240dp"
6 - app:cardCornerRadius="20dp"
7 - android:layout_marginBottom="2dp"
8 - android:layout_marginStart="10dp">
9 -
10 - <androidx.constraintlayout.widget.ConstraintLayout
11 - android:layout_width="match_parent"
12 - android:layout_height="match_parent">
13 -
14 - <androidx.constraintlayout.widget.Guideline
15 - android:id="@+id/gl_horizontal_75_guideline"
16 - android:layout_width="wrap_content"
17 - android:layout_height="wrap_content"
18 - android:orientation="horizontal"
19 - app:layout_constraintGuide_percent="0.75" />
20 -
21 - <androidx.constraintlayout.widget.Guideline
22 - android:id="@+id/gl_horizontal_50_guideline"
23 - android:layout_width="wrap_content"
24 - android:layout_height="wrap_content"
25 - android:orientation="horizontal"
26 - app:layout_constraintGuide_percent="0.5" />
27 -
28 - <ImageView
29 - android:id="@+id/iv_gift_item_logo"
30 - android:layout_width="match_parent"
31 - android:layout_height="match_parent"
32 - android:clipToOutline="true"
33 - android:scaleType="fitXY"
34 - android:src="@drawable/ic_banner_gift"
35 - app:layout_constraintBottom_toTopOf="@+id/gl_horizontal_75_guideline"
36 - app:layout_constraintEnd_toEndOf="parent"
37 - app:layout_constraintStart_toStartOf="parent"
38 - app:layout_constraintTop_toTopOf="parent" />
39 -
40 - <RelativeLayout
41 - android:layout_width="0dp"
42 - android:layout_height="0dp"
43 - app:layout_constraintBottom_toBottomOf="parent"
44 - app:layout_constraintEnd_toEndOf="parent"
45 - app:layout_constraintStart_toStartOf="parent"
46 - app:layout_constraintTop_toBottomOf="@+id/gl_horizontal_50_guideline">
47 -
48 - <LinearLayout
49 - android:id="@+id/ll_loyalty_item1"
50 - android:layout_width="match_parent"
51 - android:layout_height="wrap_content"
52 - android:background="@color/white_tr3"
53 - android:paddingHorizontal="16dp"
54 - android:paddingVertical="6dp">
55 -
56 - <TextView
57 - android:layout_width="wrap_content"
58 - android:layout_height="wrap_content"
59 - android:text="Αποκλειστικά για σένα"
60 - android:textColor="@color/grey"
61 - android:textSize="16sp"
62 - android:textStyle="bold" />
63 - </LinearLayout>
64 -
65 - <androidx.constraintlayout.widget.ConstraintLayout
66 - android:layout_width="match_parent"
67 - android:layout_height="match_parent"
68 - android:layout_below="@+id/ll_loyalty_item1"
69 - android:background="@drawable/shape_cos_white_rounded_lower"
70 - android:orientation="vertical"
71 - android:paddingHorizontal="16dp">
72 -
73 - <TextView
74 - android:id="@+id/tv_loyalty_item_subtitle"
75 - android:layout_width="0dp"
76 - android:layout_height="wrap_content"
77 - android:maxLines="2"
78 - android:text="2 ώρες δωρεάν απεριόριστα data όποτε θέλεις εσύ, κάθε μήνα!"
79 - android:textColor="@color/grey"
80 - android:textSize="16sp"
81 - app:layout_constraintEnd_toEndOf="parent"
82 - app:layout_constraintStart_toStartOf="parent"
83 - app:layout_constraintTop_toTopOf="parent" />
84 -
85 - <TextView
86 - android:layout_width="wrap_content"
87 - android:layout_height="wrap_content"
88 - android:layout_gravity="end"
89 - android:layout_marginBottom="16dp"
90 - android:background="@drawable/shape_cos_gradient3"
91 - android:paddingHorizontal="12dp"
92 - android:paddingVertical="4dp"
93 - android:text="Πάρε το δώρο σου"
94 - android:textColor="@android:color/white"
95 - android:textFontWeight="600"
96 - android:textSize="16sp"
97 - app:layout_constraintBottom_toBottomOf="parent"
98 - app:layout_constraintEnd_toEndOf="parent"
99 - app:layout_constraintTop_toBottomOf="@+id/tv_loyalty_item_subtitle" />
100 - </androidx.constraintlayout.widget.ConstraintLayout>
101 - </RelativeLayout>
102 - </androidx.constraintlayout.widget.ConstraintLayout>
103 -</androidx.cardview.widget.CardView>
...\ No newline at end of file ...\ No newline at end of file
1 -<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
2 - xmlns:app="http://schemas.android.com/apk/res-auto"
3 - android:layout_width="match_parent"
4 - android:layout_height="wrap_content"
5 - android:background="@drawable/banner_border_white"
6 - android:elevation="3dp">
7 -
8 - <LinearLayout
9 - android:id="@+id/ll_myphone"
10 - android:layout_width="wrap_content"
11 - android:layout_height="wrap_content"
12 - android:background="@drawable/banner_border_grey_bg4"
13 - android:orientation="horizontal"
14 - android:paddingHorizontal="12dp"
15 - android:paddingVertical="6dp"
16 - app:layout_constraintStart_toStartOf="parent"
17 - app:layout_constraintTop_toTopOf="parent">
18 -
19 - <ImageView
20 - android:id="@+id/iv_widget_phone"
21 - android:layout_width="24dp"
22 - android:layout_height="24dp"
23 - android:src="@drawable/smartphone"
24 - app:layout_constraintBottom_toTopOf="@+id/horizontal_outer_guideline"
25 - app:layout_constraintStart_toStartOf="@+id/vertical_outer_guideline"
26 - app:layout_constraintTop_toTopOf="parent" />
27 -
28 - <TextView
29 - android:id="@+id/tv_widget_phone_title"
30 - android:layout_width="wrap_content"
31 - android:layout_height="wrap_content"
32 - android:layout_marginStart="8dp"
33 - android:text="Το κινητό μου"
34 - android:textColor="#415564"
35 - android:textFontWeight="500"
36 - android:textSize="15sp" />
37 - </LinearLayout>
38 -
39 - <ImageView
40 - android:layout_width="100dp"
41 - android:layout_height="30dp"
42 - android:layout_marginStart="8dp"
43 - android:src="@drawable/cosmote_one"
44 - app:layout_constraintBottom_toBottomOf="@+id/ll_myphone"
45 - app:layout_constraintStart_toEndOf="@+id/ll_myphone"
46 - app:layout_constraintTop_toTopOf="@+id/ll_myphone" />
47 -
48 - <TextView
49 - android:id="@+id/textView2"
50 - android:layout_width="wrap_content"
51 - android:layout_height="wrap_content"
52 - android:layout_marginStart="16dp"
53 - android:layout_marginTop="24dp"
54 - android:text="'Εχεις διαθέσιμα 5.6 GB"
55 - android:textColor="#415564"
56 - android:textSize="16sp"
57 - android:textStyle="bold"
58 - app:layout_constraintStart_toStartOf="parent"
59 - app:layout_constraintTop_toBottomOf="@+id/ll_myphone" />
60 -
61 - <ImageView
62 - android:id="@+id/iv_progress"
63 - android:layout_width="110dp"
64 - android:layout_height="110dp"
65 - android:layout_marginEnd="24dp"
66 - android:src="@drawable/ic_data_progress"
67 - app:layout_constraintEnd_toEndOf="parent"
68 - app:layout_constraintTop_toTopOf="@+id/textView2" />
69 -
70 - <ImageView
71 - android:id="@+id/iv_one_logo"
72 - android:layout_width="100dp"
73 - android:layout_height="30dp"
74 - android:layout_marginTop="6dp"
75 - android:src="@drawable/cosmote_one"
76 - app:layout_constraintEnd_toEndOf="@+id/iv_progress"
77 - app:layout_constraintStart_toStartOf="@+id/iv_progress"
78 - app:layout_constraintTop_toBottomOf="@+id/iv_progress" />
79 -
80 - <androidx.constraintlayout.widget.ConstraintLayout
81 - android:layout_width="match_parent"
82 - android:layout_height="wrap_content"
83 - android:layout_marginTop="16dp"
84 - app:layout_constraintBottom_toBottomOf="parent"
85 - app:layout_constraintEnd_toEndOf="parent"
86 - app:layout_constraintStart_toStartOf="parent"
87 - app:layout_constraintTop_toBottomOf="@+id/iv_one_logo">
88 -
89 - <LinearLayout
90 - android:id="@+id/ll_data"
91 - android:layout_width="0dp"
92 - android:layout_height="wrap_content"
93 - android:background="@drawable/banner_border_white2"
94 - android:gravity="center"
95 - android:orientation="horizontal"
96 - android:paddingHorizontal="12dp"
97 - android:paddingVertical="6dp"
98 - app:layout_constraintBottom_toBottomOf="parent"
99 - app:layout_constraintEnd_toStartOf="@+id/ll_voice"
100 - app:layout_constraintStart_toStartOf="parent"
101 - app:layout_constraintTop_toTopOf="parent">
102 -
103 - <ImageView
104 - android:id="@+id/iv_widget_mb"
105 - android:layout_width="22dp"
106 - android:layout_height="22dp"
107 - android:layout_marginStart="8dp"
108 - android:src="@drawable/web"
109 - app:layout_constraintBottom_toBottomOf="parent"
110 - app:layout_constraintStart_toStartOf="@+id/vertical_outer_guideline"
111 - app:layout_constraintTop_toTopOf="@+id/horizontal_outer_guideline2"
112 - app:layout_constraintVertical_bias="0.437" />
113 -
114 - <TextView
115 - android:id="@+id/tv_widget_data_title"
116 - android:layout_width="wrap_content"
117 - android:layout_height="wrap_content"
118 - android:layout_marginStart="8dp"
119 - android:text="Internet"
120 - android:textColor="#415564"
121 - android:textSize="15sp"
122 - app:layout_constraintBottom_toBottomOf="parent"
123 - app:layout_constraintStart_toEndOf="@+id/iv_widget_mb"
124 - app:layout_constraintTop_toTopOf="@+id/horizontal_outer_guideline2"
125 - app:layout_constraintVertical_bias="0.47" />
126 - </LinearLayout>
127 -
128 - <LinearLayout
129 - android:id="@+id/ll_voice"
130 - android:layout_width="0dp"
131 - android:layout_height="wrap_content"
132 - android:background="@drawable/banner_border_grey_bg_left_radius"
133 - android:gravity="center"
134 - android:orientation="horizontal"
135 - android:paddingHorizontal="12dp"
136 - android:paddingVertical="6dp"
137 - app:layout_constraintBottom_toBottomOf="parent"
138 - app:layout_constraintEnd_toStartOf="@+id/ll_sms"
139 - app:layout_constraintStart_toEndOf="@+id/ll_data"
140 - app:layout_constraintTop_toTopOf="parent">
141 -
142 - <ImageView
143 - android:id="@+id/iv_widget_voice"
144 - android:layout_width="22dp"
145 - android:layout_height="22dp"
146 - android:layout_marginStart="8dp"
147 - android:src="@drawable/phone_white"
148 - app:layout_constraintBottom_toBottomOf="parent"
149 - app:layout_constraintStart_toStartOf="@+id/vertical_outer_guideline"
150 - app:layout_constraintTop_toTopOf="@+id/horizontal_outer_guideline2"
151 - app:layout_constraintVertical_bias="0.437" />
152 -
153 - <TextView
154 - android:id="@+id/tv_widget_talk_title"
155 - android:layout_width="wrap_content"
156 - android:layout_height="wrap_content"
157 - android:layout_marginStart="8dp"
158 - android:text="Ομιλία"
159 - android:textColor="@android:color/white"
160 - android:textSize="15sp"
161 - app:layout_constraintBottom_toBottomOf="parent"
162 - app:layout_constraintStart_toEndOf="@+id/iv_widget_mb"
163 - app:layout_constraintTop_toTopOf="@+id/horizontal_outer_guideline2"
164 - app:layout_constraintVertical_bias="0.47" />
165 - </LinearLayout>
166 -
167 - <LinearLayout
168 - android:id="@+id/ll_sms"
169 - android:layout_width="0dp"
170 - android:layout_height="wrap_content"
171 - android:background="@drawable/banner_border_grey_bg_right_radius"
172 - android:gravity="center"
173 - android:orientation="horizontal"
174 - android:paddingHorizontal="12dp"
175 - android:paddingVertical="6dp"
176 - app:layout_constraintBottom_toBottomOf="parent"
177 - app:layout_constraintEnd_toEndOf="parent"
178 - app:layout_constraintStart_toEndOf="@+id/ll_voice"
179 - app:layout_constraintTop_toTopOf="parent">
180 -
181 - <ImageView
182 - android:id="@+id/iv_widget_sms"
183 - android:layout_width="22dp"
184 - android:layout_height="22dp"
185 - android:layout_marginStart="8dp"
186 - android:src="@drawable/envelope_white"
187 - app:layout_constraintBottom_toBottomOf="parent"
188 - app:layout_constraintStart_toStartOf="@+id/vertical_outer_guideline"
189 - app:layout_constraintTop_toTopOf="@+id/horizontal_outer_guideline2"
190 - app:layout_constraintVertical_bias="0.437" />
191 -
192 - <TextView
193 - android:id="@+id/tv_widget_sms_title"
194 - android:layout_width="wrap_content"
195 - android:layout_height="wrap_content"
196 - android:layout_marginStart="8dp"
197 - android:text="SMS"
198 - android:textColor="@android:color/white"
199 - android:textSize="15sp"
200 - app:layout_constraintBottom_toBottomOf="parent"
201 - app:layout_constraintStart_toEndOf="@+id/iv_widget_mb"
202 - app:layout_constraintTop_toTopOf="@+id/horizontal_outer_guideline2"
203 - app:layout_constraintVertical_bias="0.47" />
204 - </LinearLayout>
205 - </androidx.constraintlayout.widget.ConstraintLayout>
206 -</androidx.constraintlayout.widget.ConstraintLayout>
...\ No newline at end of file ...\ No newline at end of file
1 -<?xml version="1.0" encoding="utf-8"?>
2 -<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 - xmlns:tools="http://schemas.android.com/tools"
4 - android:layout_width="wrap_content"
5 - android:layout_height="wrap_content"
6 - android:orientation="horizontal">
7 -
8 - <TextView
9 - android:id="@+id/tv_code_copy"
10 - android:layout_width="wrap_content"
11 - android:layout_height="wrap_content"
12 - android:background="@android:color/transparent"
13 - android:textColor="@color/grey"
14 - android:textSize="16sp"
15 - tools:text="6987654322" />
16 -
17 - <TextView
18 - android:id="@+id/tv_code_comma"
19 - android:layout_width="wrap_content"
20 - android:layout_height="wrap_content"
21 - android:background="@android:color/transparent"
22 - android:textColor="@color/grey"
23 - android:textSize="16sp"
24 - tools:text="@string/cos_comma" />
25 -</LinearLayout>
...\ No newline at end of file ...\ No newline at end of file
1 -<?xml version="1.0" encoding="utf-8"?>
2 -<LinearLayout 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="wrap_content"
7 - android:orientation="vertical">
8 -
9 - <RelativeLayout
10 - android:id="@+id/ll_share_view2"
11 - android:layout_width="match_parent"
12 - android:layout_height="wrap_content"
13 - android:layout_marginHorizontal="12dp"
14 - android:layout_marginTop="16dp">
15 -
16 - <TextView
17 - android:id="@+id/tv_phone_share"
18 - android:layout_width="match_parent"
19 - android:layout_height="wrap_content"
20 - android:layout_alignParentStart="true"
21 - android:layout_centerVertical="true"
22 - android:background="@android:color/transparent"
23 - android:textColor="@color/cos_light_black"
24 - android:textSize="16sp"
25 - tools:text="6987654322" />
26 - </RelativeLayout>
27 -
28 - <View
29 - android:id="@+id/v_separator2"
30 - android:layout_width="match_parent"
31 - android:layout_height="1dp"
32 - android:layout_marginTop="20dp"
33 - android:background="@color/cos_grey7"
34 - app:layout_constraintEnd_toEndOf="@+id/ll_share_view2"
35 - app:layout_constraintStart_toStartOf="@+id/ll_share_view2"
36 - app:layout_constraintTop_toBottomOf="@+id/ll_share_view2" />
37 -</LinearLayout>
...\ No newline at end of file ...\ No newline at end of file
1 -<?xml version="1.0" encoding="utf-8"?>
2 -<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 - android:layout_width="wrap_content"
4 - android:layout_height="wrap_content"
5 - android:background="@android:color/white">
6 -
7 - <ImageView
8 - android:id="@+id/iv_market_logo"
9 - android:layout_width="56dp"
10 - android:layout_height="56dp"
11 - android:layout_marginStart="8dp" />
12 -</RelativeLayout>
...\ No newline at end of file ...\ No newline at end of file
1 -<?xml version="1.0" encoding="utf-8"?>
2 -<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 - xmlns:app="http://schemas.android.com/apk/res-auto"
4 - android:layout_width="match_parent"
5 - android:layout_height="wrap_content"
6 - xmlns:tools="http://schemas.android.com/tools"
7 - android:background="@android:color/white">
8 -
9 - <androidx.constraintlayout.widget.ConstraintLayout
10 - android:layout_width="match_parent"
11 - android:layout_height="56dp"
12 - android:layout_marginBottom="32dp"
13 - android:background="@drawable/shape_cos_sheet_item">
14 -
15 - <ImageView
16 - android:id="@+id/iv_merchant_sheet_logo"
17 - android:layout_width="140dp"
18 - android:layout_height="36dp"
19 - android:layout_marginStart="24dp"
20 - tools:src="@drawable/cosmote_insurance_logo"
21 - app:layout_constraintBottom_toBottomOf="parent"
22 - app:layout_constraintStart_toStartOf="parent"
23 - app:layout_constraintTop_toTopOf="parent" />
24 -
25 - <androidx.constraintlayout.widget.ConstraintLayout
26 - android:id="@+id/cl_button_sm_buy_it"
27 - android:layout_width="wrap_content"
28 - android:layout_height="36dp"
29 - android:layout_marginEnd="8dp"
30 - android:background="@drawable/selector_button_green2"
31 - app:layout_constraintBottom_toBottomOf="parent"
32 - app:layout_constraintEnd_toEndOf="parent"
33 - app:layout_constraintTop_toTopOf="parent">
34 -
35 - <TextView
36 - android:id="@+id/button_sm_buy_it"
37 - android:layout_width="wrap_content"
38 - android:layout_height="wrap_content"
39 - android:includeFontPadding="false"
40 - android:text="@string/cos_sm_buy_it"
41 - android:textColor="@color/white"
42 - android:textSize="14sp"
43 - android:layout_marginStart="24dp"
44 - android:layout_marginEnd="12dp"
45 - app:layout_constraintBottom_toBottomOf="parent"
46 - app:layout_constraintEnd_toStartOf="@+id/iv_sheet_cart"
47 - app:layout_constraintStart_toStartOf="parent"
48 - app:layout_constraintTop_toTopOf="parent" />
49 -
50 - <ImageView
51 - android:id="@+id/iv_sheet_cart"
52 - android:layout_width="16dp"
53 - android:layout_height="16dp"
54 - android:src="@drawable/ic_sm_cart"
55 - android:layout_marginEnd="8dp"
56 - app:layout_constraintBottom_toBottomOf="parent"
57 - app:layout_constraintEnd_toEndOf="parent"
58 - app:layout_constraintTop_toTopOf="parent" />
59 - </androidx.constraintlayout.widget.ConstraintLayout>
60 - </androidx.constraintlayout.widget.ConstraintLayout>
61 -</LinearLayout>
...\ No newline at end of file ...\ No newline at end of file
1 -<?xml version="1.0" encoding="utf-8"?>
2 -<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 - xmlns:app="http://schemas.android.com/apk/res-auto"
4 - android:layout_width="match_parent"
5 - android:layout_height="wrap_content"
6 - xmlns:tools="http://schemas.android.com/tools"
7 - android:background="@android:color/white">
8 -
9 - <androidx.constraintlayout.widget.ConstraintLayout
10 - android:layout_width="match_parent"
11 - android:layout_height="56dp"
12 - android:layout_marginBottom="32dp"
13 - android:background="@drawable/shape_cos_sheet_item">
14 -
15 - <ImageView
16 - android:id="@+id/iv_merchant_sheet_logo"
17 - android:layout_width="140dp"
18 - android:layout_height="36dp"
19 - android:layout_marginStart="24dp"
20 - tools:src="@drawable/cosmote_insurance_logo"
21 - app:layout_constraintBottom_toBottomOf="parent"
22 - app:layout_constraintStart_toStartOf="parent"
23 - app:layout_constraintTop_toTopOf="parent" />
24 -
25 - <androidx.constraintlayout.widget.ConstraintLayout
26 - android:id="@+id/cl_button_sm_buy_it"
27 - android:layout_width="wrap_content"
28 - android:layout_height="36dp"
29 - android:layout_marginEnd="8dp"
30 - android:background="@drawable/selector_button_green2"
31 - app:layout_constraintBottom_toBottomOf="parent"
32 - app:layout_constraintEnd_toEndOf="parent"
33 - app:layout_constraintTop_toTopOf="parent">
34 -
35 - <TextView
36 - android:id="@+id/button_sm_buy_it"
37 - android:layout_width="wrap_content"
38 - android:layout_height="wrap_content"
39 - android:includeFontPadding="false"
40 - android:text="@string/cos_sm_buy_it"
41 - android:textColor="@color/white"
42 - android:textSize="14sp"
43 - android:layout_marginHorizontal="24dp"
44 - app:layout_constraintBottom_toBottomOf="parent"
45 - app:layout_constraintEnd_toEndOf="parent"
46 - app:layout_constraintStart_toStartOf="parent"
47 - app:layout_constraintTop_toTopOf="parent" />
48 - </androidx.constraintlayout.widget.ConstraintLayout>
49 - </androidx.constraintlayout.widget.ConstraintLayout>
50 -</LinearLayout>
...\ No newline at end of file ...\ No newline at end of file
1 -<?xml version="1.0" encoding="utf-8"?>
2 -<LinearLayout 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="wrap_content"
7 - android:gravity="center"
8 - android:orientation="vertical">
9 -
10 - <ImageView
11 - android:id="@+id/iv_inapp_image"
12 - android:layout_width="80dp"
13 - android:layout_height="80dp"
14 - android:layout_gravity="center"
15 - android:layout_margin="8dp" />
16 -
17 - <TextView
18 - android:id="@+id/tv_inapp_title"
19 - android:layout_width="wrap_content"
20 - android:layout_height="wrap_content"
21 - android:layout_gravity="center"
22 - android:layout_margin="8dp"
23 - android:textAlignment="center"
24 - tools:text="Title" />
25 -
26 - <TextView
27 - android:id="@+id/tv_inapp_subtitle"
28 - android:layout_width="wrap_content"
29 - android:layout_height="wrap_content"
30 - android:layout_gravity="center"
31 - android:layout_margin="8dp"
32 - android:textAlignment="center"
33 - tools:text="Subtitle" />
34 -
35 - <LinearLayout
36 - android:id="@+id/ll_custom_buttons_view"
37 - android:layout_width="wrap_content"
38 - android:layout_height="wrap_content"
39 - android:layout_gravity="right|end"
40 - android:gravity="right|end"
41 - android:layout_margin="8dp"
42 - android:orientation="vertical">
43 -
44 - </LinearLayout>
45 -
46 -</LinearLayout>
...\ 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:tools="http://schemas.android.com/tools"
3 - android:layout_width="match_parent"
4 - android:layout_height="wrap_content">
5 -
6 - <RelativeLayout
7 - android:layout_width="match_parent"
8 - android:layout_height="wrap_content"
9 - android:layout_marginHorizontal="16dp"
10 - android:background="@drawable/shape_cos_white"
11 - android:paddingHorizontal="16dp"
12 - android:paddingVertical="24dp">
13 -
14 - <Spinner
15 - android:id="@+id/sp_coupons"
16 - android:layout_width="match_parent"
17 - android:layout_height="60dp"
18 - android:layout_centerHorizontal="true"
19 - android:background="@drawable/shape_cos_grey"
20 - android:dropDownVerticalOffset="62dp"
21 - android:popupBackground="@drawable/shape_cos_grey"
22 - android:popupElevation="1dp"
23 - android:spinnerMode="dropdown" />
24 -
25 - <include
26 - android:id="@+id/cl_chart"
27 - layout="@layout/cos_piechart_conditional_render"
28 - android:layout_width="200dp"
29 - android:layout_height="200dp"
30 - android:layout_below="@+id/sp_coupons"
31 - android:layout_centerHorizontal="true"
32 - android:layout_marginTop="32dp" />
33 -
34 - <LinearLayout
35 - android:id="@+id/ll_spinners"
36 - android:layout_width="match_parent"
37 - android:layout_height="wrap_content"
38 - android:layout_below="@+id/cl_chart"
39 - android:layout_marginTop="32dp"
40 - android:gravity="center"
41 - android:orientation="vertical">
42 -
43 - <Spinner
44 - android:id="@+id/sp_redemption"
45 - android:layout_width="match_parent"
46 - android:layout_height="60dp"
47 - android:layout_centerHorizontal="true"
48 - android:background="@drawable/shape_cos_sky_blue"
49 - android:dropDownVerticalOffset="62dp"
50 - android:popupBackground="@drawable/shape_cos_sky_blue"
51 - android:popupElevation="1dp"
52 - android:spinnerMode="dropdown" />
53 -
54 - <Spinner
55 - android:id="@+id/sp_collection"
56 - android:layout_width="match_parent"
57 - android:layout_height="60dp"
58 - android:layout_centerHorizontal="true"
59 - android:background="@drawable/shape_cos_sky_blue"
60 - android:dropDownVerticalOffset="62dp"
61 - android:popupBackground="@drawable/shape_cos_sky_blue"
62 - android:popupElevation="1dp"
63 - android:spinnerMode="dropdown"
64 - android:visibility="gone" />
65 - </LinearLayout>
66 -
67 - <include
68 - android:id="@+id/cl_chart_info"
69 - layout="@layout/cos_analysis"
70 - android:layout_width="match_parent"
71 - android:layout_height="wrap_content"
72 - android:layout_below="@+id/ll_spinners"
73 - android:layout_marginTop="32dp" />
74 - </RelativeLayout>
75 -</RelativeLayout>
...\ No newline at end of file ...\ No newline at end of file
1 -<?xml version="1.0" encoding="utf-8"?>
2 -
3 -<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
4 - xmlns:app="http://schemas.android.com/apk/res-auto"
5 - android:layout_width="match_parent"
6 - android:layout_height="160dp"
7 - android:layout_marginHorizontal="32dp"
8 - android:background="@drawable/shape_cos_gradient2"
9 - android:paddingHorizontal="20dp"
10 - android:paddingVertical="8dp"
11 - app:layout_constraintEnd_toEndOf="parent"
12 - app:layout_constraintStart_toStartOf="parent">
13 -
14 - <LinearLayout
15 - android:id="@+id/ll_loyalty_banner_info"
16 - android:layout_width="match_parent"
17 - android:layout_height="wrap_content"
18 - android:gravity="center_vertical"
19 - android:orientation="horizontal"
20 - android:weightSum="1"
21 - app:layout_constraintEnd_toEndOf="parent"
22 - app:layout_constraintStart_toStartOf="parent"
23 - app:layout_constraintTop_toTopOf="parent">
24 -
25 - <RelativeLayout
26 - android:layout_width="wrap_content"
27 - android:layout_height="wrap_content"
28 - android:layout_weight="0.8"
29 - android:gravity="start">
30 -
31 - <ImageView
32 - android:id="@+id/iv_loyalty_type"
33 - android:layout_width="60dp"
34 - android:layout_height="40dp"
35 - android:src="@drawable/ic_traveller_white" />
36 -
37 - <TextView
38 - android:id="@+id/tv_card_username"
39 - android:layout_width="wrap_content"
40 - android:layout_height="wrap_content"
41 - android:layout_below="@+id/iv_loyalty_type"
42 - android:text="@string/cos_profile_loyalty_name"
43 - android:textColor="@android:color/white"
44 - android:textFontWeight="600"
45 - android:textSize="18sp" />
46 - </RelativeLayout>
47 -
48 - <RelativeLayout
49 - android:layout_width="wrap_content"
50 - android:layout_height="wrap_content"
51 - android:layout_weight="0.2"
52 - android:gravity="end">
53 -
54 - <de.hdodenhof.circleimageview.CircleImageView
55 - android:id="@+id/iv_profile_photo"
56 - android:layout_width="50dp"
57 - android:layout_height="50dp"
58 - android:src="@drawable/profile_photo"
59 - app:layout_constraintBottom_toBottomOf="parent"
60 - app:layout_constraintLeft_toLeftOf="parent"
61 - app:layout_constraintTop_toTopOf="parent" />
62 - </RelativeLayout>
63 - </LinearLayout>
64 -
65 - <TextView
66 - android:id="@+id/tv_questionnaire"
67 - android:layout_width="wrap_content"
68 - android:layout_height="wrap_content"
69 - android:layout_marginBottom="4dp"
70 - android:background="@drawable/round_border_tr"
71 - android:paddingHorizontal="8dp"
72 - android:paddingVertical="4dp"
73 - android:text="@string/cos_questionnaire"
74 - android:textColor="@android:color/white"
75 - android:textFontWeight="600"
76 - android:textSize="15sp"
77 - app:layout_constraintBottom_toBottomOf="parent"
78 - app:layout_constraintStart_toStartOf="parent" />
79 -</androidx.constraintlayout.widget.ConstraintLayout>
...\ No newline at end of file ...\ No newline at end of file
1 -<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
2 - android:layout_width="match_parent"
3 - android:layout_height="wrap_content">
4 -
5 - <TextView
6 - android:id="@+id/tv_burnt_coupons_loyalty_title"
7 - android:layout_width="wrap_content"
8 - android:layout_height="wrap_content"
9 - android:layout_marginStart="10dp"
10 - android:text="Εξαργυρωμένα κουπόνια"
11 - android:textColor="@color/grey"
12 - android:textSize="18sp"
13 - android:textStyle="bold" />
14 -
15 - <LinearLayout
16 - android:id="@+id/rl_home_burnt_coupons"
17 - android:layout_width="match_parent"
18 - android:layout_height="wrap_content"
19 - android:layout_below="@id/tv_burnt_coupons_loyalty_title">
20 -
21 - <androidx.recyclerview.widget.RecyclerView
22 - android:id="@+id/rv_loyalty_burnt_coupons"
23 - android:layout_width="match_parent"
24 - android:layout_height="wrap_content"
25 - android:clipToPadding="false"
26 - android:orientation="horizontal"
27 - android:paddingEnd="10dp" />
28 - </LinearLayout>
29 -</RelativeLayout>
...\ No newline at end of file ...\ No newline at end of file
1 -<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
2 - android:layout_width="match_parent"
3 - android:layout_height="wrap_content">
4 -
5 - <TextView
6 - android:id="@+id/tv_coupons_loyalty_title"
7 - android:layout_width="wrap_content"
8 - android:layout_height="wrap_content"
9 - android:layout_marginStart="10dp"
10 - android:text="@string/cos_coupons_loyalty_title"
11 - android:textColor="@color/grey"
12 - android:textSize="18sp"
13 - android:textStyle="bold" />
14 -
15 - <LinearLayout
16 - android:id="@+id/rl_home_coupons"
17 - android:layout_width="match_parent"
18 - android:layout_height="wrap_content"
19 - android:layout_below="@id/tv_coupons_loyalty_title">
20 -
21 - <androidx.recyclerview.widget.RecyclerView
22 - android:id="@+id/rv_loyalty_coupons"
23 - android:layout_width="match_parent"
24 - android:layout_height="wrap_content"
25 - android:clipToPadding="false"
26 - android:orientation="horizontal"
27 - android:paddingEnd="10dp" />
28 - </LinearLayout>
29 -</RelativeLayout>
...\ No newline at end of file ...\ No newline at end of file
1 -<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
2 - android:layout_width="match_parent"
3 - android:layout_height="wrap_content">
4 -
5 - <TextView
6 - android:id="@+id/tv_gifts_loyalty_title"
7 - android:layout_width="wrap_content"
8 - android:layout_height="wrap_content"
9 - android:layout_marginStart="10dp"
10 - android:text="@string/cos_gifts_loyalty_title"
11 - android:textColor="@color/grey"
12 - android:textSize="18sp"
13 - android:textStyle="bold" />
14 -
15 - <HorizontalScrollView
16 - android:id="@+id/ll_add"
17 - android:layout_width="match_parent"
18 - android:layout_height="wrap_content"
19 - android:layout_below="@id/tv_gifts_loyalty_title"
20 - android:layout_marginTop="32dp"
21 - android:scrollbars="none">
22 -
23 - <LinearLayout
24 - android:layout_width="match_parent"
25 - android:layout_height="match_parent">
26 -
27 - <include
28 - android:id="@+id/cl_loyalty_gift_item"
29 - layout="@layout/gift_layout" />
30 -
31 - <include
32 - android:id="@+id/cl_loyalty_gift_item2"
33 - layout="@layout/gift_layout" />
34 - </LinearLayout>
35 - </HorizontalScrollView>
36 -</RelativeLayout>
...\ No newline at end of file ...\ No newline at end of file
1 -<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
2 - android:layout_width="match_parent"
3 - android:layout_height="wrap_content">
4 -
5 - <TextView
6 - android:id="@+id/tv_redeemed_gifts_loyalty_title"
7 - android:layout_width="wrap_content"
8 - android:layout_height="wrap_content"
9 - android:layout_marginStart="10dp"
10 - android:text="Εξαργυρωμένα δώρα"
11 - android:textColor="@color/grey"
12 - android:textSize="18sp"
13 - android:textStyle="bold" />
14 -
15 - <HorizontalScrollView
16 - android:id="@+id/ll_redeemed"
17 - android:layout_width="match_parent"
18 - android:layout_height="wrap_content"
19 - android:layout_below="@id/tv_redeemed_gifts_loyalty_title"
20 - android:layout_marginTop="32dp"
21 - android:scrollbars="none">
22 -
23 - <LinearLayout
24 - android:layout_width="match_parent"
25 - android:layout_height="match_parent">
26 -
27 - <include
28 - android:id="@+id/cl_loyalty_gift_item"
29 - layout="@layout/redeemed_gift_layout" />
30 -
31 - <include
32 - android:id="@+id/cl_loyalty_gift_item2"
33 - layout="@layout/redeemed_gift_layout" />
34 - </LinearLayout>
35 - </HorizontalScrollView>
36 -</RelativeLayout>
...\ No newline at end of file ...\ No newline at end of file
1 -<?xml version="1.0" encoding="utf-8"?>
2 -<RelativeLayout 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="wrap_content"
7 - android:layout_gravity="center_horizontal"
8 - android:paddingHorizontal="16dp"
9 - android:paddingVertical="56dp">
10 -
11 - <TextView
12 - android:id="@+id/textView5"
13 - android:layout_width="match_parent"
14 - android:layout_height="55dp"
15 - android:layout_alignParentStart="true"
16 - android:layout_alignParentTop="true"
17 - android:layout_alignParentEnd="true"
18 - android:layout_marginHorizontal="48dp"
19 - android:gravity="center"
20 - android:text="Συγχαρητήρια!"
21 - android:textColor="#0072C9"
22 - android:textSize="25sp"
23 - android:textStyle="bold"
24 - app:layout_constraintTop_toTopOf="parent" />
25 -
26 - <TextView
27 - android:id="@+id/textView6"
28 - android:layout_width="match_parent"
29 - android:layout_height="42dp"
30 - android:layout_below="@+id/textView5"
31 - android:layout_alignParentStart="true"
32 - android:layout_alignParentEnd="true"
33 - android:layout_marginHorizontal="48dp"
34 - android:layout_marginTop="4dp"
35 - android:layout_marginBottom="24dp"
36 - android:gravity="center"
37 - android:text="Κέρδισες 1GB για 7 ημέρες!"
38 - android:textColor="#5B5B5B"
39 - android:textFontWeight="500"
40 - android:textSize="18sp" />
41 -
42 - <TextView
43 - android:id="@+id/textView7"
44 - android:layout_width="match_parent"
45 - android:layout_height="58dp"
46 - android:layout_below="@+id/textView6"
47 - android:layout_alignParentStart="true"
48 - android:layout_alignParentEnd="true"
49 - android:layout_marginHorizontal="48dp"
50 - android:layout_marginTop="4dp"
51 - android:gravity="center"
52 - android:text="Για σένα που είσαι πολλά χρόνια μαζί μας έχουμε επιπλέον δώρα!"
53 - android:textColor="#858C96"
54 - android:textSize="16sp"
55 - tools:layout_editor_absoluteX="26dp"
56 - tools:layout_editor_absoluteY="177dp" />
57 -
58 - <LinearLayout
59 - android:id="@+id/constraintLayout"
60 - android:layout_width="wrap_content"
61 - android:layout_height="54dp"
62 - android:layout_below="@+id/textView7"
63 - android:layout_alignParentStart="true"
64 - android:layout_alignParentEnd="true"
65 - android:layout_marginTop="40dp"
66 - android:background="@drawable/banner_border_grey_bg"
67 - android:gravity="center_vertical"
68 - android:paddingHorizontal="16dp">
69 -
70 - <TextView
71 - android:id="@+id/tv_lucky_draw"
72 - android:layout_width="wrap_content"
73 - android:layout_height="wrap_content"
74 - android:gravity="center"
75 - android:text="Μy Lucky Day Draw"
76 - android:textColor="#3A5266"
77 - android:textSize="17dp"
78 - app:layout_constraintBottom_toBottomOf="parent"
79 - app:layout_constraintStart_toStartOf="parent"
80 - app:layout_constraintTop_toTopOf="parent" />
81 -
82 - </LinearLayout>
83 -
84 - <LinearLayout
85 - android:id="@+id/constraintLayout3"
86 - android:layout_width="wrap_content"
87 - android:layout_height="60dp"
88 - android:layout_below="@+id/constraintLayout"
89 - android:layout_alignParentStart="true"
90 - android:layout_alignParentEnd="true"
91 - android:layout_marginTop="32dp"
92 - android:background="@drawable/banner_border_grey_bg"
93 - android:gravity="center_vertical"
94 - android:paddingHorizontal="16dp">
95 -
96 - <TextView
97 - android:id="@+id/tv_cosmote_tv_pass"
98 - android:layout_width="match_parent"
99 - android:layout_height="wrap_content"
100 - android:gravity="center"
101 - android:text="Day Free COSMOTE TV pass στο κινητό"
102 - android:textColor="#3A5266"
103 - android:textSize="17dp"
104 - app:layout_constraintBottom_toBottomOf="parent"
105 - app:layout_constraintStart_toStartOf="parent"
106 - app:layout_constraintTop_toTopOf="parent" />
107 - </LinearLayout>
108 -
109 - <LinearLayout
110 - android:id="@+id/constraintLayout4"
111 - android:layout_width="wrap_content"
112 - android:layout_height="59dp"
113 - android:layout_below="@+id/constraintLayout3"
114 - android:layout_alignParentStart="true"
115 - android:layout_alignParentEnd="true"
116 - android:layout_marginTop="32dp"
117 - android:background="@drawable/banner_border_grey_bg"
118 - android:gravity="center_vertical"
119 - android:paddingHorizontal="16dp">
120 -
121 - <TextView
122 - android:id="@+id/tv_ikea_coupon"
123 - android:layout_width="match_parent"
124 - android:layout_height="wrap_content"
125 - android:gravity="center"
126 - android:text="Δωρεάν κουπόνι ΙΚΕΑ αξίας 10€"
127 - android:textColor="#3A5266"
128 - android:textSize="17dp"
129 - app:layout_constraintBottom_toBottomOf="parent"
130 - app:layout_constraintStart_toStartOf="parent"
131 - app:layout_constraintTop_toTopOf="parent" />
132 - </LinearLayout>
133 -</RelativeLayout>
...\ No newline at end of file ...\ No newline at end of file
1 -<?xml version="1.0" encoding="utf-8"?>
2 -<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
3 - xmlns:app="http://schemas.android.com/apk/res-auto"
4 - android:layout_width="360dp"
5 - android:layout_height="240dp"
6 - app:cardCornerRadius="20dp"
7 - android:layout_marginBottom="2dp"
8 - android:layout_marginStart="10dp">
9 -
10 - <androidx.constraintlayout.widget.ConstraintLayout
11 - android:layout_width="match_parent"
12 - android:layout_height="match_parent">
13 -
14 - <androidx.constraintlayout.widget.Guideline
15 - android:id="@+id/gl_horizontal_75_guideline"
16 - android:layout_width="wrap_content"
17 - android:layout_height="wrap_content"
18 - android:orientation="horizontal"
19 - app:layout_constraintGuide_percent="0.75" />
20 -
21 - <androidx.constraintlayout.widget.Guideline
22 - android:id="@+id/gl_horizontal_60_guideline"
23 - android:layout_width="wrap_content"
24 - android:layout_height="wrap_content"
25 - android:orientation="horizontal"
26 - app:layout_constraintGuide_percent="0.6" />
27 -
28 - <ImageView
29 - android:id="@+id/iv_gift_item_logo"
30 - android:layout_width="match_parent"
31 - android:layout_height="match_parent"
32 - android:background="@drawable/shape_cos_transparent_rounded"
33 - android:clipToOutline="true"
34 - android:scaleType="centerCrop"
35 - android:src="@drawable/ic_banner_redeemed_gift"
36 - app:layout_constraintBottom_toTopOf="@+id/gl_horizontal_75_guideline"
37 - app:layout_constraintEnd_toEndOf="parent"
38 - app:layout_constraintStart_toStartOf="parent"
39 - app:layout_constraintTop_toTopOf="parent" />
40 -
41 - <RelativeLayout
42 - android:layout_width="0dp"
43 - android:layout_height="0dp"
44 - app:layout_constraintBottom_toBottomOf="parent"
45 - app:layout_constraintEnd_toEndOf="parent"
46 - app:layout_constraintStart_toStartOf="parent"
47 - app:layout_constraintTop_toBottomOf="@+id/gl_horizontal_60_guideline">
48 -
49 - <LinearLayout
50 - android:id="@+id/ll_loyalty_item1"
51 - android:layout_width="match_parent"
52 - android:layout_height="wrap_content"
53 - android:background="@color/white_tr3"
54 - android:paddingHorizontal="16dp"
55 - android:paddingTop="16dp"
56 - android:paddingBottom="4dp">
57 -
58 - <TextView
59 - android:layout_width="wrap_content"
60 - android:layout_height="wrap_content"
61 - android:text="BOX κουπόνι 4€"
62 - android:textColor="@color/grey_tr2"
63 - android:textSize="16sp"
64 - android:textStyle="bold" />
65 - </LinearLayout>
66 -
67 - <androidx.constraintlayout.widget.ConstraintLayout
68 - android:layout_width="match_parent"
69 - android:layout_height="match_parent"
70 - android:layout_below="@+id/ll_loyalty_item1"
71 - android:background="@drawable/shape_cos_white_rounded_lower"
72 - android:orientation="vertical"
73 - android:paddingHorizontal="16dp">
74 -
75 - <TextView
76 - android:id="@+id/tv_loyalty_item_subtitle"
77 - android:layout_width="0dp"
78 - android:layout_height="wrap_content"
79 - android:maxLines="2"
80 - android:text="4€ έκπτωση για την επόμενη παραγγελία σου!"
81 - android:textColor="@color/grey_tr2"
82 - android:textSize="16sp"
83 - app:layout_constraintBottom_toBottomOf="parent"
84 - app:layout_constraintEnd_toEndOf="parent"
85 - app:layout_constraintStart_toStartOf="parent"
86 - app:layout_constraintTop_toTopOf="parent" />
87 - </androidx.constraintlayout.widget.ConstraintLayout>
88 - </RelativeLayout>
89 - </androidx.constraintlayout.widget.ConstraintLayout>
90 -</androidx.cardview.widget.CardView>
...\ No newline at end of file ...\ No newline at end of file
1 -<?xml version="1.0" encoding="utf-8"?><!--
2 -/* //device/apps/common/assets/res/any/layout/simple_spinner_item.xml
3 -**
4 -** Copyright 2008, The Android Open Source Project
5 -**
6 -** Licensed under the Apache License, Version 2.0 (the "License")
7 -** you may not use this file except in compliance with the License.
8 -** You may obtain a copy of the License at
9 -**
10 -** http://www.apache.org/licenses/LICENSE-2.0
11 -**
12 -** Unless required by applicable law or agreed to in writing, software
13 -** distributed under the License is distributed on an "AS IS" BASIS,
14 -** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 -** See the License for the specific language governing permissions and
16 -** limitations under the License.
17 -*/
18 --->
19 -<CheckedTextView xmlns:android="http://schemas.android.com/apk/res/android"
20 - xmlns:tools="http://schemas.android.com/tools"
21 - android:id="@android:id/text1"
22 - android:layout_width="match_parent"
23 - android:layout_height="60dp"
24 - android:ellipsize="marquee"
25 - android:gravity="center"
26 - android:singleLine="true"
27 - android:textColor="#3C3B48"
28 - android:textSize="16sp"
29 - tools:text="Test Spinner Dropdown" />
1 -<?xml version="1.0" encoding="utf-8"?><!--
2 -/* //device/apps/common/assets/res/any/layout/simple_spinner_item.xml
3 -**
4 -** Copyright 2008, The Android Open Source Project
5 -**
6 -** Licensed under the Apache License, Version 2.0 (the "License")
7 -** you may not use this file except in compliance with the License.
8 -** You may obtain a copy of the License at
9 -**
10 -** http://www.apache.org/licenses/LICENSE-2.0
11 -**
12 -** Unless required by applicable law or agreed to in writing, software
13 -** distributed under the License is distributed on an "AS IS" BASIS,
14 -** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 -** See the License for the specific language governing permissions and
16 -** limitations under the License.
17 -*/
18 --->
19 -<CheckedTextView xmlns:android="http://schemas.android.com/apk/res/android"
20 - xmlns:tools="http://schemas.android.com/tools"
21 - android:id="@android:id/text1"
22 - android:layout_width="match_parent"
23 - android:layout_height="60dp"
24 - android:ellipsize="marquee"
25 - android:gravity="center"
26 - android:singleLine="true"
27 - android:textColor="#3C3B48"
28 - android:textSize="16sp"
29 - tools:text="Test Spinner Dropdown" />
1 -<?xml version="1.0" encoding="utf-8"?>
2 -<TextView xmlns:android="http://schemas.android.com/apk/res/android"
3 - xmlns:tools="http://schemas.android.com/tools"
4 - android:id="@android:id/text1"
5 - android:layout_width="match_parent"
6 - android:layout_height="wrap_content"
7 - android:ellipsize="marquee"
8 - android:singleLine="true"
9 - android:drawableEnd="@drawable/ic_down"
10 - android:paddingHorizontal="16dp"
11 - android:textAlignment="inherit"
12 - android:textColor="#3C3B48"
13 - android:textSize="16sp"
14 - android:textStyle="bold"
15 - tools:text="Test Spinner" />
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 - android:layout_width="match_parent"
5 - android:layout_height="wrap_content">
6 -
7 - <TextView
8 - android:id="@+id/tv_month"
9 - android:layout_width="wrap_content"
10 - android:layout_height="wrap_content"
11 - android:background="@drawable/bottom_border_gradient"
12 - android:text="@string/cos_monthly"
13 - android:textColor="@color/cos_cyan3"
14 - android:textSize="18sp"
15 - android:textStyle="bold"
16 - app:layout_constraintBottom_toBottomOf="parent"
17 - app:layout_constraintHorizontal_bias="0.0"
18 - app:layout_constraintStart_toStartOf="parent"
19 - app:layout_constraintTop_toTopOf="parent" />
20 -
21 - <TextView
22 - android:id="@+id/tv_six_month"
23 - android:layout_width="wrap_content"
24 - android:layout_height="wrap_content"
25 - android:background="@drawable/bottom_border_transparent"
26 - android:text="@string/cos_six_months"
27 - android:textColor="@color/grey"
28 - android:textSize="18sp"
29 - android:textStyle="bold"
30 - app:layout_constraintBottom_toBottomOf="parent"
31 - app:layout_constraintEnd_toStartOf="@+id/tv_twelve_month"
32 - app:layout_constraintStart_toEndOf="@+id/tv_month"
33 - app:layout_constraintTop_toTopOf="parent" />
34 -
35 - <TextView
36 - android:id="@+id/tv_twelve_month"
37 - android:layout_width="wrap_content"
38 - android:layout_height="wrap_content"
39 - android:background="@drawable/bottom_border_transparent"
40 - android:text="@string/cos_annual"
41 - android:textColor="@color/grey"
42 - android:textSize="18sp"
43 - android:textStyle="bold"
44 - app:layout_constraintBottom_toBottomOf="parent"
45 - app:layout_constraintEnd_toEndOf="parent"
46 - app:layout_constraintTop_toTopOf="parent" />
47 -</androidx.constraintlayout.widget.ConstraintLayout>
...\ No newline at end of file ...\ No newline at end of file
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 - android:layout_width="match_parent"
5 - android:layout_height="wrap_content">
6 -
7 - <TextView
8 - android:id="@+id/tv_month"
9 - android:layout_width="wrap_content"
10 - android:layout_height="wrap_content"
11 - android:background="@drawable/bottom_border_gradient_grey_bg"
12 - android:text="ΜΗΝΙΑΙΑ"
13 - android:textColor="@color/grey"
14 - android:textSize="18sp"
15 - android:textStyle="bold"
16 - app:layout_constraintBottom_toBottomOf="parent"
17 - app:layout_constraintHorizontal_bias="0.0"
18 - app:layout_constraintStart_toStartOf="parent"
19 - app:layout_constraintTop_toTopOf="parent" />
20 -
21 - <TextView
22 - android:id="@+id/tv_six_month"
23 - android:layout_width="wrap_content"
24 - android:layout_height="wrap_content"
25 - android:background="@drawable/bottom_border_grey_transparent"
26 - android:text="6ΜΗΝΟ"
27 - android:textColor="@color/grey"
28 - android:textSize="18sp"
29 - android:textStyle="bold"
30 - app:layout_constraintBottom_toBottomOf="parent"
31 - app:layout_constraintEnd_toStartOf="@+id/tv_twelve_month"
32 - app:layout_constraintStart_toEndOf="@+id/tv_month"
33 - app:layout_constraintTop_toTopOf="parent" />
34 -
35 - <TextView
36 - android:id="@+id/tv_twelve_month"
37 - android:layout_width="wrap_content"
38 - android:layout_height="wrap_content"
39 - android:background="@drawable/bottom_border_grey_transparent"
40 - android:text="12ΜΗΝΟ"
41 - android:textColor="@color/grey"
42 - android:textSize="18sp"
43 - android:textStyle="bold"
44 - app:layout_constraintBottom_toBottomOf="parent"
45 - app:layout_constraintEnd_toEndOf="parent"
46 - app:layout_constraintTop_toTopOf="parent" />
47 -</androidx.constraintlayout.widget.ConstraintLayout>
...\ No newline at end of file ...\ No newline at end of file
1 -<?xml version="1.0" encoding="utf-8"?>
2 -<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 - android:layout_width="match_parent"
4 - android:layout_height="wrap_content"
5 - android:gravity="center_horizontal"
6 - android:orientation="horizontal"
7 - android:weightSum="1">
8 -
9 - <LinearLayout
10 - android:id="@+id/ll_tab_expired"
11 - android:layout_width="wrap_content"
12 - android:layout_height="32dp"
13 - android:layout_weight="0.2"
14 - android:background="@drawable/bottom_border_light_blue"
15 - android:gravity="center_horizontal">
16 -
17 - <TextView
18 - android:id="@+id/tv_expired_tab"
19 - android:layout_width="wrap_content"
20 - android:layout_height="wrap_content"
21 - android:text="@string/cos_redeemed_coupons_tab"
22 - android:textColor="@color/cos_light_black"
23 - android:textSize="16sp" />
24 - </LinearLayout>
25 -
26 - <View
27 - android:layout_width="16dp"
28 - android:layout_height="32dp" />
29 -
30 - <LinearLayout
31 - android:id="@+id/ll_tab_shared"
32 - android:layout_width="wrap_content"
33 - android:layout_height="32dp"
34 - android:layout_weight="0.2"
35 - android:background="@drawable/bottom_border_transparent"
36 - android:gravity="center_horizontal">
37 -
38 - <TextView
39 - android:id="@+id/tv_shared_tab"
40 - android:layout_width="wrap_content"
41 - android:layout_height="wrap_content"
42 - android:text="@string/cos_shared_gifts_tab"
43 - android:textColor="@color/cos_gray2"
44 - android:textSize="16sp" />
45 - </LinearLayout>
46 -</LinearLayout>
...\ No newline at end of file ...\ No newline at end of file
1 -<?xml version="1.0" encoding="utf-8"?>
2 -<androidx.cardview.widget.CardView 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="100dp"
7 - android:layout_gravity="center"
8 - app:cardCornerRadius="4dp"
9 - app:cardElevation="5dp">
10 -
11 - <androidx.constraintlayout.widget.ConstraintLayout
12 - android:layout_width="match_parent"
13 - android:layout_height="match_parent"
14 - android:background="@color/white">
15 -
16 - <LinearLayout
17 - android:layout_width="0dp"
18 - android:layout_height="wrap_content"
19 - android:layout_marginTop="16dp"
20 - android:gravity="center_horizontal"
21 - android:paddingHorizontal="8dp"
22 - app:layout_constraintEnd_toEndOf="parent"
23 - app:layout_constraintStart_toStartOf="parent"
24 - app:layout_constraintTop_toTopOf="parent">
25 -
26 - <TextView
27 - android:id="@+id/tv_telematics_metric_title_value"
28 - android:layout_width="wrap_content"
29 - android:layout_height="wrap_content"
30 - android:textColor="@color/grey"
31 - android:textSize="22sp"
32 - tools:text="52" />
33 -
34 - <TextView
35 - android:id="@+id/tv_telematics_metric_title"
36 - android:layout_width="wrap_content"
37 - android:layout_height="wrap_content"
38 - android:textColor="@color/grey"
39 - android:textSize="18sp"
40 - tools:text="km/h" />
41 - </LinearLayout>
42 -
43 - <TextView
44 - android:id="@+id/tv_telematics_metric_subtitle"
45 - android:layout_width="wrap_content"
46 - android:layout_height="wrap_content"
47 - android:layout_marginBottom="16dp"
48 - android:textColor="@color/grey"
49 - android:textSize="18sp"
50 - app:layout_constraintBottom_toBottomOf="parent"
51 - app:layout_constraintEnd_toEndOf="parent"
52 - app:layout_constraintStart_toStartOf="parent"
53 - tools:text="Average km/h" />
54 - </androidx.constraintlayout.widget.ConstraintLayout>
55 -</androidx.cardview.widget.CardView>
...\ No newline at end of file ...\ No newline at end of file
1 -<?xml version="1.0" encoding="utf-8"?>
2 -<RelativeLayout 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/rv_box_count"
6 - android:layout_width="104dp"
7 - android:layout_height="104dp">
8 -
9 - <androidx.cardview.widget.CardView
10 - android:id="@+id/cv_box_count"
11 - android:layout_width="match_parent"
12 - android:layout_height="match_parent"
13 - android:layout_marginHorizontal="2dp"
14 - android:layout_marginVertical="4dp"
15 - app:cardCornerRadius="16dp"
16 - app:cardElevation="2dp">
17 -
18 - <androidx.constraintlayout.widget.ConstraintLayout
19 - android:layout_width="match_parent"
20 - android:layout_height="match_parent"
21 - android:background="@color/white">
22 -
23 - <ImageView
24 - android:id="@+id/iv_box_logo_count"
25 - android:layout_width="34dp"
26 - android:layout_height="34dp"
27 - android:src="@drawable/sv_box_logo"
28 - app:layout_constraintBottom_toTopOf="@+id/v_separator_box_count"
29 - app:layout_constraintEnd_toEndOf="parent"
30 - app:layout_constraintStart_toStartOf="parent"
31 - app:layout_constraintTop_toTopOf="parent" />
32 -
33 - <View
34 - android:id="@+id/v_separator_box_count"
35 - android:layout_width="match_parent"
36 - android:layout_height="1dp"
37 - android:layout_marginHorizontal="8dp"
38 - android:background="@color/cos_grey2"
39 - app:layout_constraintBottom_toBottomOf="parent"
40 - app:layout_constraintEnd_toEndOf="parent"
41 - app:layout_constraintStart_toStartOf="parent"
42 - app:layout_constraintTop_toTopOf="parent" />
43 -
44 - <TextView
45 - android:id="@+id/tv_box_count_title"
46 - android:layout_width="0dp"
47 - android:layout_height="wrap_content"
48 - android:layout_marginHorizontal="8dp"
49 - android:gravity="center"
50 - android:includeFontPadding="false"
51 - android:text="@string/cos_box_tile"
52 - android:textColor="@color/cos_light_black"
53 - android:textSize="10sp"
54 - app:layout_constraintBottom_toBottomOf="parent"
55 - app:layout_constraintEnd_toEndOf="parent"
56 - app:layout_constraintStart_toStartOf="parent"
57 - app:layout_constraintTop_toBottomOf="@+id/v_separator_box_count" />
58 - </androidx.constraintlayout.widget.ConstraintLayout>
59 - </androidx.cardview.widget.CardView>
60 -
61 - <LinearLayout
62 - android:layout_width="16dp"
63 - android:layout_height="16dp"
64 - android:layout_alignParentEnd="true"
65 - android:layout_marginTop="4dp"
66 - android:layout_marginEnd="1dp"
67 - android:background="@drawable/shape_cos_counter_orange"
68 - android:gravity="center"
69 - android:orientation="vertical"
70 - android:translationZ="2dp"
71 - android:visibility="gone"
72 - app:layout_constraintEnd_toEndOf="parent"
73 - app:layout_constraintTop_toTopOf="parent">
74 -
75 - <TextView
76 - android:id="@+id/tv_box_count"
77 - android:layout_width="wrap_content"
78 - android:layout_height="16dp"
79 - android:includeFontPadding="false"
80 - android:maxLines="1"
81 - android:textColor="@color/cos_light_black"
82 - android:textSize="12sp"
83 - tools:text="6" />
84 - </LinearLayout>
85 -</RelativeLayout>
...\ No newline at end of file ...\ No newline at end of file
1 -<?xml version="1.0" encoding="utf-8"?>
2 -<RelativeLayout 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/rv_gifts_count"
6 - android:layout_width="104dp"
7 - android:layout_height="104dp">
8 -
9 - <androidx.cardview.widget.CardView
10 - android:id="@+id/cv_gifts_count"
11 - android:layout_width="match_parent"
12 - android:layout_height="match_parent"
13 - android:layout_marginHorizontal="2dp"
14 - android:layout_marginVertical="4dp"
15 - app:cardCornerRadius="16dp"
16 - app:cardElevation="2dp">
17 -
18 - <androidx.constraintlayout.widget.ConstraintLayout
19 - android:layout_width="match_parent"
20 - android:layout_height="match_parent"
21 - android:background="@color/white">
22 -
23 - <ImageView
24 - android:id="@+id/iv_gifts_logo_count"
25 - android:layout_width="34dp"
26 - android:layout_height="34dp"
27 - android:src="@drawable/sv_gifts_redesign"
28 - app:layout_constraintBottom_toTopOf="@+id/v_separator_gifts_count"
29 - app:layout_constraintEnd_toEndOf="parent"
30 - app:layout_constraintStart_toStartOf="parent"
31 - app:layout_constraintTop_toTopOf="parent" />
32 -
33 - <View
34 - android:id="@+id/v_separator_gifts_count"
35 - android:layout_width="match_parent"
36 - android:layout_height="1dp"
37 - android:layout_marginHorizontal="8dp"
38 - android:background="@color/cos_grey2"
39 - app:layout_constraintBottom_toBottomOf="parent"
40 - app:layout_constraintEnd_toEndOf="parent"
41 - app:layout_constraintStart_toStartOf="parent"
42 - app:layout_constraintTop_toTopOf="parent" />
43 -
44 - <TextView
45 - android:id="@+id/tv_gifts_count_title"
46 - android:layout_width="0dp"
47 - android:layout_height="wrap_content"
48 - android:layout_marginHorizontal="8dp"
49 - android:gravity="center"
50 - android:includeFontPadding="false"
51 - android:text="@string/cos_free_coupons_tile"
52 - android:textColor="@color/cos_light_black"
53 - android:textSize="10sp"
54 - app:layout_constraintBottom_toBottomOf="parent"
55 - app:layout_constraintEnd_toEndOf="parent"
56 - app:layout_constraintStart_toStartOf="parent"
57 - app:layout_constraintTop_toBottomOf="@+id/v_separator_gifts_count" />
58 - </androidx.constraintlayout.widget.ConstraintLayout>
59 - </androidx.cardview.widget.CardView>
60 -
61 - <LinearLayout
62 - android:layout_width="16dp"
63 - android:layout_height="16dp"
64 - android:layout_alignParentEnd="true"
65 - android:layout_marginTop="4dp"
66 - android:layout_marginEnd="1dp"
67 - android:background="@drawable/shape_cos_counter_orange"
68 - android:gravity="center"
69 - android:orientation="vertical"
70 - android:translationZ="2dp"
71 - app:layout_constraintEnd_toEndOf="parent"
72 - app:layout_constraintTop_toTopOf="parent">
73 -
74 - <TextView
75 - android:id="@+id/tv_gifts_count"
76 - android:layout_width="wrap_content"
77 - android:layout_height="16dp"
78 - android:includeFontPadding="false"
79 - android:maxLines="1"
80 - android:textColor="@color/cos_light_black"
81 - android:textSize="12sp"
82 - tools:text="6" />
83 - </LinearLayout>
84 -</RelativeLayout>
...\ No newline at end of file ...\ No newline at end of file
1 -<?xml version="1.0" encoding="utf-8"?>
2 -<RelativeLayout 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/rv_deals_count"
6 - android:layout_width="104dp"
7 - android:layout_height="104dp">
8 -
9 - <androidx.cardview.widget.CardView
10 - android:id="@+id/cv_deals_count"
11 - android:layout_width="match_parent"
12 - android:layout_height="match_parent"
13 - android:layout_marginHorizontal="2dp"
14 - android:layout_marginVertical="4dp"
15 - app:cardCornerRadius="16dp"
16 - app:cardElevation="2dp">
17 -
18 - <androidx.constraintlayout.widget.ConstraintLayout
19 - android:layout_width="match_parent"
20 - android:layout_height="match_parent"
21 - android:background="@color/white">
22 -
23 - <ImageView
24 - android:id="@+id/iv_deals_logo_count"
25 - android:layout_width="52dp"
26 - android:layout_height="32dp"
27 - android:src="@drawable/sv_deals_logo_redesign"
28 - app:layout_constraintBottom_toTopOf="@+id/v_separator_deals_count"
29 - app:layout_constraintEnd_toEndOf="parent"
30 - app:layout_constraintStart_toStartOf="parent"
31 - app:layout_constraintTop_toTopOf="parent" />
32 -
33 - <View
34 - android:id="@+id/v_separator_deals_count"
35 - android:layout_width="match_parent"
36 - android:layout_height="1dp"
37 - android:layout_marginHorizontal="8dp"
38 - android:background="@color/cos_grey2"
39 - app:layout_constraintBottom_toBottomOf="parent"
40 - app:layout_constraintEnd_toEndOf="parent"
41 - app:layout_constraintStart_toStartOf="parent"
42 - app:layout_constraintTop_toTopOf="parent" />
43 -
44 - <TextView
45 - android:id="@+id/tv_deals_count_title"
46 - android:layout_width="0dp"
47 - android:layout_height="wrap_content"
48 - android:layout_marginHorizontal="8dp"
49 - android:gravity="center"
50 - android:includeFontPadding="false"
51 - android:text="@string/cos_deals_tile"
52 - android:textColor="@color/cos_light_black"
53 - android:textSize="10sp"
54 - app:layout_constraintBottom_toBottomOf="parent"
55 - app:layout_constraintEnd_toEndOf="parent"
56 - app:layout_constraintStart_toStartOf="parent"
57 - app:layout_constraintTop_toBottomOf="@+id/v_separator_deals_count" />
58 - </androidx.constraintlayout.widget.ConstraintLayout>
59 - </androidx.cardview.widget.CardView>
60 -
61 - <LinearLayout
62 - android:layout_width="16dp"
63 - android:layout_height="16dp"
64 - android:layout_alignParentEnd="true"
65 - android:layout_marginTop="4dp"
66 - android:layout_marginEnd="1dp"
67 - android:background="@drawable/shape_cos_counter_orange"
68 - android:gravity="center"
69 - android:orientation="vertical"
70 - android:translationZ="2dp"
71 - app:layout_constraintEnd_toEndOf="parent"
72 - app:layout_constraintTop_toTopOf="parent">
73 -
74 - <TextView
75 - android:id="@+id/tv_deals_count"
76 - android:layout_width="wrap_content"
77 - android:layout_height="16dp"
78 - android:includeFontPadding="false"
79 - android:maxLines="1"
80 - android:textColor="@color/cos_light_black"
81 - android:textSize="12sp"
82 - tools:text="6" />
83 - </LinearLayout>
84 -</RelativeLayout>
...\ No newline at end of file ...\ No newline at end of file
1 -<?xml version="1.0" encoding="utf-8"?>
2 -<RelativeLayout 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/rv_sm_count"
6 - android:layout_width="104dp"
7 - android:layout_height="104dp">
8 -
9 - <androidx.cardview.widget.CardView
10 - android:id="@+id/cv_sm_count"
11 - android:layout_width="match_parent"
12 - android:layout_height="match_parent"
13 - android:layout_marginHorizontal="2dp"
14 - android:layout_marginVertical="4dp"
15 - app:cardCornerRadius="16dp"
16 - app:cardElevation="2dp">
17 -
18 - <androidx.constraintlayout.widget.ConstraintLayout
19 - android:layout_width="match_parent"
20 - android:layout_height="match_parent"
21 - android:background="@color/white">
22 -
23 - <ImageView
24 - android:id="@+id/iv_sm_logo_count"
25 - android:layout_width="32dp"
26 - android:layout_height="32dp"
27 - android:src="@drawable/sv_unified_redesign"
28 - app:layout_constraintBottom_toTopOf="@+id/v_separator_sm_count"
29 - app:layout_constraintEnd_toEndOf="parent"
30 - app:layout_constraintStart_toStartOf="parent"
31 - app:layout_constraintTop_toTopOf="parent" />
32 -
33 - <View
34 - android:id="@+id/v_separator_sm_count"
35 - android:layout_width="match_parent"
36 - android:layout_height="1dp"
37 - android:layout_marginHorizontal="8dp"
38 - android:background="@color/cos_grey2"
39 - app:layout_constraintBottom_toBottomOf="parent"
40 - app:layout_constraintEnd_toEndOf="parent"
41 - app:layout_constraintStart_toStartOf="parent"
42 - app:layout_constraintTop_toTopOf="parent" />
43 -
44 - <TextView
45 - android:id="@+id/tv_sm_count_title"
46 - android:layout_width="0dp"
47 - android:layout_height="wrap_content"
48 - android:layout_marginHorizontal="8dp"
49 - android:gravity="center"
50 - android:includeFontPadding="false"
51 - android:text="@string/cos_market_title"
52 - android:textColor="@color/cos_light_black"
53 - android:textSize="10sp"
54 - app:layout_constraintBottom_toBottomOf="parent"
55 - app:layout_constraintEnd_toEndOf="parent"
56 - app:layout_constraintStart_toStartOf="parent"
57 - app:layout_constraintTop_toBottomOf="@+id/v_separator_sm_count" />
58 - </androidx.constraintlayout.widget.ConstraintLayout>
59 - </androidx.cardview.widget.CardView>
60 -
61 - <LinearLayout
62 - android:layout_width="16dp"
63 - android:layout_height="16dp"
64 - android:layout_alignParentEnd="true"
65 - android:layout_marginTop="4dp"
66 - android:layout_marginEnd="1dp"
67 - android:background="@drawable/shape_cos_counter_orange"
68 - android:gravity="center"
69 - android:orientation="vertical"
70 - android:translationZ="2dp"
71 - app:layout_constraintEnd_toEndOf="parent"
72 - app:layout_constraintTop_toTopOf="parent">
73 -
74 - <TextView
75 - android:id="@+id/tv_sm_count"
76 - android:layout_width="wrap_content"
77 - android:layout_height="16dp"
78 - android:includeFontPadding="false"
79 - android:maxLines="1"
80 - android:textColor="@color/cos_light_black"
81 - android:textSize="12sp"
82 - tools:text="6" />
83 - </LinearLayout>
84 -</RelativeLayout>
...\ No newline at end of file ...\ No newline at end of file
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <resources> 2 <resources>
3 - <color name="colorPrimary">#0a1a50</color> 3 + <!-- Used in drawables -->
4 - <color name="colorAccent">#044C86</color>
5 - <color name="colorPrimaryDark">#0a1a50</color>
6 - <color name="grey">#415564</color>
7 - <color name="cos_green">#65DD6B</color>
8 - <color name="cos_blue">#0377C1</color>
9 - <color name="cos_grey">#3D5265</color>
10 - <color name="white">#FFFFFF</color>
11 - <color name="white_tr">#32FFFFFF</color>
12 - <color name="cos_grey_dark">#787878</color>
13 <color name="cos_cyan">#A3F2DA</color> 4 <color name="cos_cyan">#A3F2DA</color>
14 - <color name="grey_light">#f1f1f2</color> 5 + <color name="cos_grey_dark">#787878</color>
15 - <color name="cos_green2">#52DF5A</color>
16 - <color name="cos_green3">#68BB7E</color>
17 - <color name="green_dark">#1DA87A</color>
18 - <color name="cos_blue2">#0478BE</color>
19 - <color name="white_tr2">#77FFFFFF</color>
20 - <color name="white_tr3">#E6FFFFFF</color>
21 - <color name="grey_tr">#A3415564</color>
22 - <color name="grey_light2">#F9F9F9</color>
23 - <color name="grey_tr2">#D4415564</color>
24 - <color name="grey2">#707070</color>
25 - <color name="skyblue">#1AADCC</color>
26 - <color name="cos_green4">#6DBC7A</color>
27 - <color name="cos_green5">#79BF14</color>
28 - <color name="cos_green5_tr">#6679BF14</color>
29 - <color name="blue_dark">#3A5266</color>
30 - <color name="white_tr4">#A1FFFFFF</color>
31 - <color name="cos_green6">#509E2F</color>
32 - <color name="cos_grey2">#E6E6E6</color>
33 - <color name="cos_grey2_tr">#66E6E6E6</color>
34 - <color name="cos_grey3">#84929E</color>
35 - <color name="cos_cyan2">#6DBCC0</color>
36 - <color name="cos_green7">#B2CF81</color>
37 - <color name="cos_cyan3">#2EB2B9</color>
38 - <color name="grey4">#F3F3F3</color>
39 - <color name="grey_tr3">#7DF2F2F2</color>
40 - <color name="cos_dark_blue">#355168</color>
41 - <color name="cos_grey4">#617181</color>
42 - <color name="grey_light3">#E3E3E3</color>
43 - <color name="cos_grey5">#385267</color>
44 - <color name="cos_blue3">#03A1D6</color>
45 - <color name="cos_green8">#3AB588</color>
46 - <color name="cos_light_grey">#F4F4F4</color>
47 - <color name="cos_green9">#86C15F</color>
48 - <color name="cos_skyblue">#13ACD4</color>
49 - <color name="cos_grey6">#536C79</color>
50 - <color name="cos_grey_tr">#00000029</color>
51 - <color name="cos_grey7">#C0C7CD</color>
52 - <color name="cos_grey8">#AEAEAE</color>
53 - <color name="cos_blue_dark">#3C4F5E</color>
54 - <color name="cos_blue_dark2">#435563</color>
55 - <color name="cos_light_grey2">#8B97A3</color>
56 - <color name="cos_cyan4">#2EAFB9</color>
57 - <color name="cos_dark_grey">#394A5B</color>
58 - <color name="cos_white_tr">#9CFFFFFF</color>
59 - <color name="cos_skyblue2">#22A9B5</color>
60 - <color name="cos_blue4">#07A2D1</color>
61 - <color name="cos_green10">#73CA34</color>
62 - <color name="cos_blue5">#0D81B8</color>
63 - <color name="cos_grey9">#757575</color>
64 - <color name="cos_grey10">#53626E</color>
65 - <color name="cos_green11">#78BE6D</color>
66 - <color name="cos_skyblue3">#0FABD6</color>
67 - <color name="cos_light_grey3">#F2F2F3</color>
68 - <color name="cos_light_black">#212121</color>
69 <color name="cos_green12">#0EA600</color> 6 <color name="cos_green12">#0EA600</color>
70 <color name="cos_green6_tr">#660EA600</color> 7 <color name="cos_green6_tr">#660EA600</color>
71 - <color name="cos_gray">#9D9D9C</color> 8 +
72 - <color name="cos_gray_tr">#669D9D9C</color> 9 + <!-- Used in layouts -->
73 - <color name="cos_gray2">#848484</color> 10 + <color name="cos_skyblue2">#22A9B5</color>
11 + <color name="blue_dark">#3A5266</color>
12 + <color name="white">#FFFFFF</color>
13 + <color name="cos_green5">#79BF14</color>
14 +
15 + <!-- Used in styles -->
74 <color name="cos_light_blue">#00A5E3</color> 16 <color name="cos_light_blue">#00A5E3</color>
75 - <color name="cos_grey_dark2">#32485A</color>
76 - <color name="cos_blue6">#004B87</color>
77 - <color name="cos_skyblue4">#B8E0EF</color>
78 - <color name="cos_grey_line_tr">#40A9A9A9</color>
79 - <color name="cos_green_tr">#0D76BF73</color>
80 - <color name="cos_orange">#EABF68</color>
81 - <color name="cos_creme">#FEFCF7</color>
82 - <color name="cos_skyblue5">#F4F8FB</color>
83 - <color name="cos_skyblue6">#0099CC</color>
84 - <color name="cos_green13">#36B32B</color>
85 - <color name="cos_light_grey4">#DADDE4</color>
86 - <color name="cos_green14">#006D26</color>
87 - <color name="cos_green14_tr">#66006D26</color>
88 </resources> 17 </resources>
......
1 <resources> 1 <resources>
2 - <string name="google_maps_key">AIzaSyB-K6OiUDT_X0zp2jYjqHg54ThxEuZtr9I</string>
3 -
4 - <string name="rate_dialog_title">Rate App</string>
5 - <string name="rate_dialog_message">If you enjoy using this app, would you mind taking a moment to rate it? It won\'t take more than a minute. Thanks for your support!</string>
6 - <string name="rate_dialog_positive">Rate Now</string>
7 - <string name="rate_diloag_neutral">Remind Me Later</string>
8 - <string name="rate_dialog_negative">No, Thanks</string>
9 -
10 - <string name="cos_profile_tab">Profile</string>
11 - <string name="welcome_user">Γεια σου %1$s !</string>
12 - <string name="cos_profile_name">%1$s</string>
13 - <string name="cos_profile_type">Traveller</string>
14 - <string name="header_add">Προσθήκη</string>
15 - <string name="cos_profile_reward">My Loyalty\nWallet</string>
16 - <string name="cos_profile_title">My Rewards</string>
17 - <string name="cos_deals_title">Deals for You</string>
18 - <string name="cos_deals_title2">DEALS FOR YOU</string>
19 - <string name="cos_deals_tile">DEALS FOR YOU\n</string>
20 - <string name="cos_profile_more">Δες περισσότερα</string>
21 - <string name="cos_gifts_title">GIFTS FOR YOU</string>
22 - <string name="cos_more_title">MORE FOR YOU</string>
23 - <string name="cos_free_coupons">FREE COUPONS</string>
24 - <string name="cos_free_coupons_tile">FREE COUPONS\n</string>
25 - <string name="cos_box">BOX</string>
26 - <string name="cos_box_tile">BOX\n</string>
27 - <string name="menu_home">Αρχική</string>
28 - <string name="menu_explore">Ανακάλυψε</string>
29 - <string name="menu_shop">Shop</string>
30 - <string name="menu_loyalty">Loyalty</string>
31 - <string name="menu_profile">Προφίλ</string>
32 - <string name="cos_profile_loyalty_name">%1$s %2$s</string>
33 - <string name="cos_questionnaire">Ερωτηματολόγιο</string>
34 - <string name="cos_gifts_loyalty_title">Τα δώρα μου</string>
35 - <string name="cos_coupons_loyalty_title">Ενεργά κουπόνια</string>
36 - <string name="cos_coupon_info_title">Εκπτωτικό κουπόνι</string>
37 - <string name="cos_coupon_date">Ισχύει έως %1$s</string>
38 - <string name="temp_value">-0,30$</string>
39 - <string name="cos_dl_title">Μόλις έλαβες δώρο %1$s συμμετοχές στο My Lucky Day Draw!</string>
40 - <string name="cos_active_coupons">Έχεις %1$s ενεργά\nκουπόνια</string>
41 - <string name="cos_active_coupon_date">Λήγει σε %1$s ημέρες</string>
42 - <string name="cos_gifts_title2">ΔΩΡΑ</string>
43 - <string name="cos_rewards_title">ΕΠΙΒΡΑΒΕΥΣΕΙΣ</string>
44 - <string name="cos_coupons_title">ΚΟΥΠΟΝΙΑ</string>
45 - <string name="cos_coupon_terms_title">Όροι χρήσης</string>
46 - <string name="cos_redeem_coupon">Απόκτησέ το</string>
47 - <string name="cos_redeem_coupon2">Απόκτησέ το δωρεάν</string>
48 - <string name="cos_dlg_success_subtitle">Το κουπόνι εξαργυρώθηκε με επιτυχία</string>
49 - <string name="cos_dlg_error_title">Αποτυχία</string>
50 - <string name="cos_dlg_error_unified_title">Αποτυχία Δημιουργίας Κουπονιού</string>
51 - <string name="cos_dlg_success_unified_title">Δημιουργία Κουπονιού</string>
52 - <string name="cos_dlg_success_unified_subtitle">Το ενιαίο κουπόνι σου δημιουργήθηκε επιτυχώς.</string>
53 - <string name="cos_dlg_error_title2">Αποτυχία αποστολής</string>
54 - <string name="cos_dlg_return_title">Επιστροφή δώρου</string>
55 - <string name="cos_dlg_error_subtitle">Κάτι πήγε στραβά</string>
56 - <string name="cos_dlg_error_subtitle_non_buyable">Το κουπόνι δεν είναι διαθέσιμο για αγορά</string>
57 - <string name="cos_dlg_error_subtitle_no_points">Δεν έχεις αρκετούς πόντους</string>
58 - <string name="cos_loyalty_coupons">My coupons</string>
59 - <string name="cos_loyalty_old_coupons">Παλαιότερα κουπόνια</string>
60 - <string name="cos_loyalty_rewards">My rewards</string>
61 - <string name="cos_loyalty_old_rewards">Παλαιότερα δώρα</string>
62 - <string name="cos_see_all">Δες τα όλα -></string>
63 - <string name="cos_barcode_coupon_title">barcode κουπονιού</string>
64 - <string name="cos_active_rewards">Έχεις %1$s ενεργά δώρα</string>
65 - <string name="cos_analysis">Ανάλυση</string>
66 - <string name="cos_active_deals">%1$s Ενεργός κωδικός:</string>
67 - <string name="cos_active_deals_plural">%1$s Ενεργοί κωδικοί:</string>
68 - <string name="cos_monthly">Μηνιαία</string>
69 - <string name="cos_six_months">6Μηνο</string>
70 - <string name="cos_annual">12Μηνο</string>
71 - <string name="cos_analysis2">Αναλυτικά</string>
72 - <string name="euro"></string>
73 - <string name="percentage">%</string>
74 - <string name="plus_one">1+1</string>
75 - <string name="cos_profile_questionnaire">Ερωτηματολόγιο</string>
76 - <string name="cos_active_all_coupons">Ενεργά κουπόνια</string>
77 - <string name="cos_active_all_rewards">Όλα τα δώρα μου</string>
78 - <string name="cos_no_active_coupons">Αυτήν τη στιγμή δεν έχεις κάποιο ενεργό κουπόνι. Στην ενότητα FOR YOU μπορείς να βρεις κουπόνια αποκλειστικά για σένα!</string>
79 - <string name="cos_no_active_unified_coupons">Αυτήν τη στιγμή δεν έχεις κάποιο ενεργό κουπόνι. Στην ενότητα FOR YOU μπορείς να βρεις κουπόνια αποκλειστικά για σένα!</string>
80 - <string name="cos_no_active_rewards">Δεν υπάρχουν δώρα</string>
81 - <string name="cos_past_all_coupons">Παλαιότερα κουπόνια</string>
82 - <string name="cos_coupon_expired_date">Εξαργυρώθηκε την %1$s</string>
83 - <string name="cos_coupon_unified_title">Ενιαία κουπόνια</string>
84 - <string name="cos_coupon_active_unified_title">Κουπόνια</string>
85 - <string name="cos_coupon_active_unified_choose_all_title">Επιλογή όλων</string>
86 - <string name="cos_popup_gifts_title">COSMOTE GIFTS FOR YOU</string>
87 - <string name="cos_popup_gifts_subtitle">Σε αυτή την ενότητα βρίσκεις τα διαθέσιμα δώρα και επιβραβεύσεις αποκλειστικά για σένα!</string>
88 - <string name="cos_mycoupon_date">Το κουπόνι ισχύει έως %1$s</string>
89 - <string name="cos_gift_it">Δώρισέ το</string>
90 - <string name="cos_sm_find_it">Βρες το στα supermarket</string>
91 - <string name="cos_sm_buy_it">Βρες το</string>
92 - <string name="cos_activate_unified">Συνδύασε τις προσφορές σε ένα κουπόνι</string>
93 - <string name="cos_popup_more_title">COSMOTE MORE FOR YOU</string>
94 - <string name="cos_popup_more_subtitle">Σε αυτή την ενότητα βρες έρευνες, παιχνίδια, διαγωνισμούς και επιβραβεύσεις για τις αθλητικές σου δραστηριότητες!</string>
95 - <string name="cos_deals_win_title">Μέχρι τώρα έχεις όφελος %1$s€ από τα FREE COUPONS</string>
96 - <string name="cos_deals_win_title_cos">Μέχρι τώρα έχεις όφελος %1$s€ από τα DEALS FOR YOU</string>
97 - <string name="cos_box_win_title_cos">Μέχρι τώρα έχεις όφελος %1$s€ από το BOX</string>
98 - <string name="cos_mygifts">Τα δώρα μου</string>
99 - <string name="cos_gifts_banner_title">Δώρα:</string>
100 - <string name="cos_see_more">Δες περισσότερα</string>
101 - <string name="cos_active_gifts_title">Ενεργά δώρα</string>
102 - <string name="cos_loyalty_analysis">Ανάλυση συναλλαγών</string>
103 - <string name="cos_value">%1$s€</string>
104 - <string name="cos_dlg_success_title">Συγχαρητήρια!</string>
105 - <string name="cos_dlg_reject_title">Είσαι σίγουρος /-η;</string>
106 - <string name="cod_dlg_return_title">Επιστροφή δώρου</string>
107 - <string name="cos_dlg_positive_button">Ενεργοποίηση</string>
108 - <string name="cos_dlg_negative_button">Απόρριψη</string>
109 - <string name="cos_dlg_positive_button2">ΟΚ</string>
110 - <string name="cos_dlg_error_supermarket">Δεν υπάρχουν διαθέσιμα supermarkets</string>
111 - <string name="cos_dlg_positive_button4">Δες το κουπόνι</string>
112 - <string name="cos_dlg_positive_button_text">Το δώρο σου ενεργοποιήθηκε επιτυχώς στο My Rewards!</string>
113 - <string name="cos_dlg_positive_button_text2">Το δώρο σου ενεργοποιήθηκε επιτυχώς στο καλάθι του SUPERMARKET DEALS!</string>
114 - <string name="cos_dlg_reject_text">Το δώρο θα επιστραφεί και δεν θα μπορεί να ενεργοποιηθεί ξανά.</string>
115 - <string name="cos_dlg_return_text">Έλαβες πίσω το δώρο σου, κουπόνι αξίας 100€ για τα Intersport</string>
116 - <string name="cos_dlg_negative_button2">Άκυρο</string>
117 - <string name="cos_dlg_negative_button5">Ακύρωση</string>
118 - <string name="cos_dlg_negative_button6">Κλείσιμο</string>
119 - <string name="cos_profile_preferences">Πρόσθεσε τις προτιμήσεις σου</string>
120 - <string name="cos_profile_history">Δες το ιστορικό σου</string>
121 - <string name="cos_shops">Δες τα καταστήματα</string>
122 - <string name="cos_pass_map">Δες στο χάρτη</string>
123 - <string name="cos_website">Δες το eshop</string>
124 - <string name="cos_coupon_shops_title">Καταστήματα</string>
125 - <string name="cos_coupon_gift">Δώρισέ το</string>
126 - <string name="cos_coupon_share_gift_title">Επίλεξε το κινητό από το οποίο θα γίνει η αποστολή και συμπλήρωσε το COSMOTE κινητό που θα λάβει το δώρο.</string>
127 - <string name="cos_coupon_share_sender">Αποστολέας</string>
128 - <string name="cos_find_sm_product">Βρες το προϊον στα supermarket</string>
129 - <string name="cos_sm_sheet_subtitle">Η διαθεσιμότητα ενδέχεται να διαφέρει ανάλογα με την τοποθεσία.</string>
130 - <string name="cos_coupon_share_hint">Καταχώρηση τηλεφώνου</string>
131 - <string name="cos_coupon_share_button">Αποστολή με SMS</string>
132 - <string name="cod_dlg_reject_title">Απόρριψη δώρου</string>
133 - <string name="cod_dlg_reject_subtitle">To δώρο απορρίφθηκε</string>
134 - <string name="cos_dlg_positive_coupon_text">Μόλις έκανες δώρο ένα κουπόνι!</string>
135 - <string name="cos_dlg_positive_coupon_title">Δώρισέ το</string>
136 - <string name="cos_dlg_positive_coupon_subtitle">Είσαι σίγουρος /-ή ότι θέλεις να κάνεις δώρο το κουπόνι σου;</string>
137 - <string name="cos_dlg_negative_button3">Αποστολή</string>
138 - <string name="cos_dlg_error_subtitle2">Παρακαλούμε συμπλήρωσε σωστά τα πεδία.</string>
139 - <string name="cos_dlg_success_couponset_title">Επιτυχής ενεργοποίηση</string>
140 - <string name="cos_dlg_success_couponset_subtitle">Το κουπόνι σου έχει ενεργοποιηθεί και βρίσκεται στην ενότητα My Rewards.</string>
141 - <string name="cos_dlg_activate_telco_title">Ενεργοποίηση υπηρεσίας</string>
142 - <string name="cos_dlg_activate_telco_subtitle">Θέλετε να γίνει ενεργοποίηση στο Κινητό μου;</string>
143 - <string name="cos_dlg_activate_telco_subtitle2">Θέλετε να γίνει ενεργοποίηση στο %1$s;</string>
144 - <string name="cos_dlg_activate_success_title">Το αίτημά σου ολοκληρώθηκε επιτυχώς!</string>
145 - <string name="cos_dlg_activate_success_subtitle">Θα ενημερωθείς άμεσα για την ενεργοποίηση του πακέτου σου.</string>
146 - <string name="cos_expired_coupon_label">Εκπτωτικό κουπόνι</string>
147 - <string name="cos_redeemed_coupons_tab">Εξαργυρωμένα</string>
148 - <string name="cos_shared_gifts_tab">Μοιρασμένα δώρα</string>
149 - <string name="cos_shared_coupon_receiver">Εκπτωτικό κουπόνι προς</string>
150 - <string name="cos_shared_coupon_sender">Έκπτωτικό κουπόνι από</string>
151 - <string name="cos_steps_for_good_notification_title">Steps For Good</string>
152 - <string name="cos_empty_wallet">Δεν έχεις ενεργό κωδικό ή κουπόνι! Μπες τώρα στην ενότητα COSMOTE For You και βρες αποκλειστικές προσφορές</string>
153 - <string name="cos_wallet_text1">Μέχρι τώρα έχεις κερδίσει&#160;</string>
154 - <string name="cos_wallet_text2">&#160;με το DEALS for YOU!</string>
155 - <string name="cos_wallet_text3">Μέχρι τώρα έχεις κερδίσει&#160;</string>
156 - <string name="cos_wallet_text4">&#160;σε προσφορές από&#160;</string>
157 - <string name="cos_wallet_text5">&#160;κουπόνια!</string>
158 - <string name="cos_value2">%1$s</string>
159 - <string name="cos_show_barcode">Εμφάνιση barcode</string>
160 - <string name="cos_hide_barcode">Απόκρυψη barcode</string>
161 - <string name="cos_wrong_number_dlg">Το κινητό που καταχώρησες δεν είναι COSMOTE. Παρακαλούμε καταχώρησε το COSMOTE τηλέφωνο του φίλου σου.</string>
162 - <string name="cos_dlg_error_expired">Το δώρο έχει λήξει</string>
163 - <string name="cos_dlg_error_used">Το δώρο έχει ήδη χρησιμοποιηθεί</string>
164 - <string name="cos_see_more2">Δες Περισσότερα</string>
165 - <string name="cos_dlg_non_telco">Πρόσθεσε σύνδεση COSMOTE σταθερής, κινητής ή TV για να έχεις πρόσβαση στις προσφορές.</string>
166 - <string name="cos_directions">Οδηγίες</string>
167 - <string name="cos_empty_shared_coupons">Δεν έχεις μοιραστεί ακόμη κουπόνια</string>
168 - <string name="cos_empty_expired_coupons">Δεν έχεις εξαργυρώσει ακόμη κουπόνια</string>
169 - <string name="cos_dlg_pacing_goal">Πέτυχες το στόχο του μήνα! Διάλεξε το δώρο που επιθυμείς να ενεργοποιήσεις!</string>
170 - <string name="cos_mfy_other">ΆΛΛΕΣ</string>
171 - <string name="cos_coupon_share_telco">Επιλογή σύνδεσης</string>
172 - <string name="cos_steps_for_good_notification_subtitle">Η υπηρεσία είναι ενεργή για την καταχώρηση των βημάτων σας.</string>
173 - <string name="cos_comma">,</string>
174 - <string name="cos_dlg_non_telco_title">Αδυναμία ενεργοποίησης</string>
175 - <string name="cos_share_no_assets">Για την αποστολή του δώρου σου χρειάζεται να έχεις κινητό COSMOTE.</string>
176 - <string name="cos_dlg_coupon_depleted_title">Το κουπόνι εξαντλήθηκε</string>
177 - <string name="cos_dlg_coupon_depleted_message">Μείνε συντονισμένος για νέες προσφορές και κουπόνια.</string>
178 - <string name="cos_dlg_no_shops">Ο συνεργάτης διαθέτει μόνο ηλεκτρονικό κατάστημα για ηλεκτρονικές παραγγελίες.</string>
179 - <string name="cos_dlg_no_map">Το πρόγραμμα Χάρτες Petal λείπει.</string>
180 - <string name="cos_dlg_no_shops_title">Καταστήματα συνεργάτη</string>
181 - <string name="cos_dlg_no_shops_positive">Δες το eshop</string>
182 - <string name="cos_profile_preferences_placeholder">Οι προτιμήσεις μου</string>
183 - <string name="cos_market_title">SUPERMARKET DEALS</string>
184 - <string name="cos_market_Pass_info_title">Οδηγίες χρήσης</string>
185 - <string name="cos_market_pass_info_header">Πως λειτουργεί:</string>
186 - <string name="cos_market_basket_title">Εξαργύρωση σε φυσικά καταστήματα</string>
187 - <string name="cos_market_basket_subtitle">Σκάναρε το barcode από το κινητό σου στο ταμείο του καταστήματος και κέρδισε απευθείας έκπτωση από τα διαθέσιμα κουπόνια.</string>
188 - <string name="cos_market_eshop_title">Εξαργύρωση στο eshop</string>
189 - <string name="cos_market_eshop_subtitle">Πληκτρολόγησε τον κωδικό σου στο αντίστοιχο πεδίο κατά το checkout στο eshop και κέρδισε απευθείας έκπτωση από τα διαθέσιμα κουπόνια.</string>
190 - <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_pass_title">SUPERMARKET DEALS CARD</string>
193 - <string name="cos_market_pass_subtitle">Χρησιμοποίησε τον κωδικό σου και κέρδισε έκπτωση στις αγορές σου!</string>
194 - <string name="cos_market_pass_return">Επιστροφή στο Supermarket Deals</string>
195 - <string name="cos_market_pass_coupons_title">Έχεις κουπόνια συνολικής αξίας %1$s€</string>
196 - <string name="cos_market_subtitle">Δημιούργησε το δικό σου ενιαίο κουπόνι προσφορών, και εξαργύρωσέ το στα supermarket της επιλογής σου γρήγορα και εύκολα με ένα μόνο κωδικό κουπονιού!</string>
197 - <string name="cos_market_close">Τέλος</string>
198 - <string name="cos_rewards_title2">COSMOTE Επιβράβευση</string>
199 - <string name="cos_market_item_title">COSMOTE\nSUPERMARKET\nDEALS</string>
200 - <string name="cos_market_active_coupons">έχεις %1$s ενεργά κουπόνια αξίας %2$s€</string>
201 - <string name="cos_market_active_coupons_single">έχεις %1$s ενεργό κουπόνι αξίας %2$s€</string>
202 - <string name="cos_market_active_coupons2">έχεις %1$s ενεργά κουπόνια</string>
203 - <string name="cos_market_active_coupons_single2">έχεις %1$s ενεργό κουπόνι</string>
204 - <string name="cos_unified_title">Εκπτωτικό κουπόνι COSMOTE SUPERMARKET DEALS!</string>
205 - <string name="cos_unified_subtitle">Χρησιμοποίησε τον παρακάτω κωδικό και πάρε έκπτωση στα ενεργά κουπόνια προσφορών αξίας <![CDATA[<b>%1$s€</b>]]>.</string>
206 - <string name="cos_unified_subtitle2">Χρησιμοποίησε τον παρακάτω κωδικό και πάρε έκπτωση στα ενεργά κουπόνια προσφορών.</string>
207 - <string name="cos_markets">Δες τα supermarket</string>
208 - <string name="cos_markets_map">Δες τα καταστήματα στο χάρτη</string>
209 - <string name="cos_markets_eshop">Δες τα eshop</string>
210 - <string name="cos_markets_eshop_item">Δες το eshop</string>
211 - <string name="cos_show_market_coupons">Εμφάνιση προσφορών</string>
212 - <string name="cos_hide_market_coupons">Απόκρυψη προσφορών</string>
213 - <string name="cos_market_terms">1. Το εκπτωτικό κουπόνι ισχύει έως την ημερομηνία που αναφέρεται παραπάνω.\n
214 -2. To εκπτωτικό κουπόνι αφορά στα ενεργά κουπόνια προσφορών όπως αναφέρονται παραπάνω.\n
215 -3. Το εκπτωτικό κουπόνι μπορεί να χρησιμοποιηθεί σε μια μόνο συναλλαγή.\n
216 -4. Εάν δεν γίνει χρήση ενός επιμέρους κουπονιού προσφοράς από το εκπτωτικό κουπόνι, το κουπόνι προσφοράς επιστρέφει στο καλάθι στην ενότητα COSMOTE SUPERMARKET DEALS.</string>
217 - <string name="cos_market_coupon_expired">Το κουπόνι έληξε</string>
218 - <string name="cos_coupon_date_limit">Ισχύει έως&#160;</string>
219 - <string name="cos_coupon_date_limit2">%1$s</string>
220 - <string name="cos_for_you_all">Μέχρι τώρα έχεις κερδίσει&#160;%1$s€&#160;στο For You!</string>
221 - <string name="cos_supermarket_win">Μέχρι τώρα έχεις όφελος %1$s€ από τα SUPERMARKET DEALS</string>
222 - <string name="cos_supermarket_history">Μέχρι τώρα έχεις κερδίσει %1$s€ σε προσφορές από %2$s κουπόνια!</string>
223 <string name="lbl_cosmote_webview_permission_title">COSMOTE</string> 2 <string name="lbl_cosmote_webview_permission_title">COSMOTE</string>
224 <string name="lbl_cosmote_webview_permission_message">Το COSMOTE ζητάει πρόσβαση στην τοποθεσία σας.</string> 3 <string name="lbl_cosmote_webview_permission_message">Το COSMOTE ζητάει πρόσβαση στην τοποθεσία σας.</string>
225 <string name="lbl_take_photo_accept">Οκ</string> 4 <string name="lbl_take_photo_accept">Οκ</string>
226 <string name="lbl_take_photo_decline">Άκυρο</string> 5 <string name="lbl_take_photo_decline">Άκυρο</string>
227 - <string name="lbl_gps_enabled">Θέλετε να ενεργοποιήσετε το GPS;</string> 6 + <string name="welcome_user">Γεια σου %1$s !</string>
228 - <string name="cos_telematics">Safe Driving</string>
229 <string name="cos_hint">GUID</string> 7 <string name="cos_hint">GUID</string>
230 - <string name="cos_telematics_metrics">Ανάλυση</string>
231 - <string name="cos_dlg_start_trip">Έναρξη</string>
232 - <string name="cos_dlg_stop_trip">Παύση</string>
233 - <string name="cos_dlg_no_internet_title">Δεν υπάρχει σύνδεση</string>
234 - <string name="cos_dlg_no_internet_subtitle">Αυτή τη στιγμή βρίσκεσαι εκτός σύνδεσης. Παρακαλούμε βεβαιώσου ότι είσαι συνδεδεμένος στο διαδίκτυο και προσπάθησε ξανά.</string>
235 - <string name="cos_telematics_sum">Συνολική Επίδοση Οδήγησης</string>
236 - <string name="cos_telematics_sum_subtitle">Βρίσκεστε στο top 65% των οδηγών</string>
237 - <string name="cos_telematics_history">Ιστορικό</string>
238 - <string name="cos_telematics_history_analysis_title">Ανάλυση παραμέτρων ασφαλούς οδήγησης</string>
239 - <string name="cos_telematics_history_analysis_rate">Αξιολογήστε την ανάλυση</string>
240 - <string name="lbl_telematics_no_location">Για να ξεκινήσετε θα πρέπει να ενεργοποιήσετε την τοποθεσία σας</string>
241 - <string name="lbl_telematics_generic_error">Άγνωστο σφάλμα</string>
242 - <string name="cos_cancel_unified_coupon">Ακύρωση ενιαίου κουπονιού</string>
243 - <string name="cos_dlg_cancel_unified_coupon_success_title">Ακύρωση Κουπονιού</string>
244 - <string name="cos_dlg_cancel_unified_coupon_success_subtitle">Το ενιαίο κουπόνι σου ακυρώθηκε επιτυχώς. Βρες τα μεμονωμένα κουπόνια στο My Rewards.</string>
245 - <string name="cos_dlg_cancel_unified_coupon_success_subtitle2">Είσαι σίγουρος ότι θέλεις να ακυρώσεις το κουπόνι σου;</string>
246 - <string name="cos_dlg_negative_button4">Όχι</string>
247 - <string name="cos_dlg_positive_button3">Ναι</string>
248 - <string name="cos_vouchers_title">Υπόλοιπο επιδότησης</string>
249 - <string name="cos_vouchers_title_en">Subsidy balance</string>
250 - <string name="cos_vouchers_info_title">Δες το διαθέσιμο υπόλοιπο</string>
251 - <string name="cos_vouchers_info_title_en">Check the available balance</string>
252 - <string name="cos_loyalty_history">Ιστορικό</string>
253 - <string name="cos_redeemed_coupons_loyalty_title">Εξαργυρωμένα κουπόνια</string>
254 - <string name="cos_history_info_text">Δες αναλυτικά το συνολικό όφελός σου έως τώρα από κουπόνια</string>
255 - <string name="cos_dlg_try_again">Προσπάθησε ξανά αργότερα</string>
256 - <string name="cos_dlg_service_unavailable">Προσωρινά μη διαθέσιμη πληροφορία.\nΠαρακαλούμε δοκίμασε ξανά σε λίγο.</string>
257 - <string name="cos_dlg_return">Επιστροφή</string>
258 - <string name="cos_vouchers_info_title_disabled">Διαθέσιμο υπόλοιπο</string>
259 - <string name="cos_vouchers_info_title_disabled_en">Available balance</string>
260 - <string name="cos_coupons_header">Κουπόνια</string>
261 <string name="cos_login_text">Σύνδεση</string> 8 <string name="cos_login_text">Σύνδεση</string>
262 <string name="cos_logout_text">Αποσύνδεση</string> 9 <string name="cos_logout_text">Αποσύνδεση</string>
263 - 10 + <string name="menu_home">Αρχική</string>
264 - <string-array name="coupons_array">
265 - <item>Κουπόνια</item>
266 - <item>Δώρα</item>
267 - </string-array>
268 -
269 - <string-array name="redemption_array">
270 - <item>Εξαργύρωση</item>
271 - </string-array>
272 -
273 - <string-array name="collection_array">
274 - <item>Συλλογή</item>
275 - </string-array>
276 </resources> 11 </resources>
......
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <resources xmlns:tools="http://schemas.android.com/tools"> 2 <resources xmlns:tools="http://schemas.android.com/tools">
3 -
4 - <style name="AppCompatAlertDialogStyle" parent="Theme.AppCompat.Light.Dialog.Alert">
5 - <item name="android:layout_gravity">right</item>
6 - <!--<item name="colorAccent">#23a890</item>-->
7 - <item name="colorAccent">@color/colorAccent</item>
8 - <item name="android:textColorPrimary">@android:color/black</item>
9 - <item name="android:background">@android:color/white</item>
10 - </style>
11 -
12 - <style name="InAppButtonsStyle" parent="@android:style/Widget.TextView">
13 - <item name="android:textSize">18sp</item>
14 - <item name="android:textStyle">bold</item>
15 - </style>
16 -
17 <style name="BottomNavigationView" parent="Widget.Design.BottomNavigationView"> 3 <style name="BottomNavigationView" parent="Widget.Design.BottomNavigationView">
18 <item name="android:textSize">14sp</item> 4 <item name="android:textSize">14sp</item>
19 </style> 5 </style>
20 6
21 - <style name="SpinnerTheme" parent="android:Widget.Spinner">
22 - <item name="android:background">@drawable/selector_spinner_arrow</item>
23 - </style>
24 -
25 - <style name="PopUpDialog" parent="Base.Theme.AppCompat.Dialog">
26 - <item name="android:windowMinWidthMajor">90%</item>
27 - <item name="android:windowMinWidthMinor">90%</item>
28 - </style>
29 -
30 <style name="SDKAppTheme" parent="Theme.MaterialComponents.Light.DarkActionBar"> 7 <style name="SDKAppTheme" parent="Theme.MaterialComponents.Light.DarkActionBar">
31 <item name="android:statusBarColor">@android:color/white</item> 8 <item name="android:statusBarColor">@android:color/white</item>
32 <item name="android:windowLightStatusBar">true</item> 9 <item name="android:windowLightStatusBar">true</item>
33 <item name="android:forceDarkAllowed" tools:targetApi="q">false</item> 10 <item name="android:forceDarkAllowed" tools:targetApi="q">false</item>
34 </style> 11 </style>
35 12
36 - <style name="GFYAppTheme" parent="Theme.MaterialComponents.Light.DarkActionBar">
37 - <item name="android:statusBarColor">@android:color/white</item>
38 - <item name="android:windowLightStatusBar">true</item>
39 - <item name="windowActionBar">false</item>
40 - <item name="windowNoTitle">true</item>
41 - <item name="android:forceDarkAllowed" tools:targetApi="q">false</item>
42 - </style>
43 -
44 - <style name="ShapeAppearanceProfileImage" parent="">
45 - <item name="cornerFamilyTopLeft">rounded</item>
46 - <item name="cornerFamilyBottomRight">rounded</item>
47 - <item name="cornerSizeTopLeft">19dp</item>
48 - <item name="cornerSizeBottomRight">19dp</item>
49 - </style>
50 -
51 <style name="CustomCardViewStyle" parent="@style/Widget.MaterialComponents.CardView"> 13 <style name="CustomCardViewStyle" parent="@style/Widget.MaterialComponents.CardView">
52 <item name="shapeAppearanceOverlay">@style/CardCustomCorners</item> 14 <item name="shapeAppearanceOverlay">@style/CardCustomCorners</item>
53 </style> 15 </style>
54 16
55 -
56 <style name="CardCustomCorners" parent=""> 17 <style name="CardCustomCorners" parent="">
57 <item name="cornerFamily">rounded</item> 18 <item name="cornerFamily">rounded</item>
58 <item name="cornerSizeTopRight">45dp</item> 19 <item name="cornerSizeTopRight">45dp</item>
...@@ -61,13 +22,6 @@ ...@@ -61,13 +22,6 @@
61 <item name="cornerSizeBottomLeft">20dp</item> 22 <item name="cornerSizeBottomLeft">20dp</item>
62 </style> 23 </style>
63 24
64 - <style name="ShapeAppearanceMfyImage" parent="">
65 - <item name="cornerFamilyTopRight">rounded</item>
66 - <item name="cornerFamilyBottomRight">rounded</item>
67 - <item name="cornerSizeTopRight">45dp</item>
68 - <item name="cornerSizeBottomRight">0dp</item>
69 - </style>
70 -
71 <style name="progressBarGreen" parent="@style/Theme.AppCompat"> 25 <style name="progressBarGreen" parent="@style/Theme.AppCompat">
72 <item name="colorAccent">@color/cos_green12</item> 26 <item name="colorAccent">@color/cos_green12</item>
73 </style> 27 </style>
...@@ -75,12 +29,4 @@ ...@@ -75,12 +29,4 @@
75 <style name="progressBarBlue" parent="@style/Theme.AppCompat"> 29 <style name="progressBarBlue" parent="@style/Theme.AppCompat">
76 <item name="colorAccent">@color/cos_light_blue</item> 30 <item name="colorAccent">@color/cos_light_blue</item>
77 </style> 31 </style>
78 -
79 - <style name="BottomSheetDialog" parent="Theme.Design.Light.BottomSheetDialog">
80 - <item name="bottomSheetStyle">@style/bottomSheetStyleWrapper</item>
81 - </style>
82 -
83 - <style name="bottomSheetStyleWrapper" parent="Widget.Design.BottomSheet.Modal">
84 - <item name="android:background">@android:color/transparent</item>
85 - </style>
86 </resources> 32 </resources>
......