Showing
7 changed files
with
289 additions
and
211 deletions
1.7 KB
| 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 |
| ... | @@ -12,8 +12,8 @@ | ... | @@ -12,8 +12,8 @@ |
| 12 | 12 | ||
| 13 | <ImageView | 13 | <ImageView |
| 14 | android:id="@+id/iv_back" | 14 | android:id="@+id/iv_back" |
| 15 | - android:layout_width="wrap_content" | 15 | + android:layout_width="20dp" |
| 16 | - android:layout_height="wrap_content" | 16 | + android:layout_height="20dp" |
| 17 | android:layout_marginStart="16dp" | 17 | android:layout_marginStart="16dp" |
| 18 | android:src="@drawable/ic_back" | 18 | android:src="@drawable/ic_back" |
| 19 | app:layout_constraintBottom_toBottomOf="parent" | 19 | app:layout_constraintBottom_toBottomOf="parent" |
| ... | @@ -25,7 +25,7 @@ | ... | @@ -25,7 +25,7 @@ |
| 25 | android:layout_height="wrap_content" | 25 | android:layout_height="wrap_content" |
| 26 | android:text="@string/cos_profile_reward" | 26 | android:text="@string/cos_profile_reward" |
| 27 | android:textColor="@color/grey" | 27 | android:textColor="@color/grey" |
| 28 | - android:textSize="16sp" | 28 | + android:textSize="17sp" |
| 29 | android:textStyle="bold" | 29 | android:textStyle="bold" |
| 30 | app:layout_constraintBottom_toBottomOf="parent" | 30 | app:layout_constraintBottom_toBottomOf="parent" |
| 31 | app:layout_constraintEnd_toEndOf="parent" | 31 | app:layout_constraintEnd_toEndOf="parent" |
| ... | @@ -45,12 +45,77 @@ | ... | @@ -45,12 +45,77 @@ |
| 45 | android:background="@drawable/shape_cos_loyalty"> | 45 | android:background="@drawable/shape_cos_loyalty"> |
| 46 | 46 | ||
| 47 | <androidx.constraintlayout.widget.ConstraintLayout | 47 | <androidx.constraintlayout.widget.ConstraintLayout |
| 48 | - android:layout_width="300dp" | 48 | + android:layout_width="match_parent" |
| 49 | - android:layout_height="200dp" | 49 | + android:layout_height="150dp" |
| 50 | - app:layout_constraintStart_toStartOf="parent" | 50 | + android:paddingHorizontal="20dp" |
| 51 | + android:paddingVertical="8dp" | ||
| 52 | + android:layout_marginHorizontal="32dp" | ||
| 53 | + android:background="@drawable/shape_cos_gradient2" | ||
| 51 | app:layout_constraintEnd_toEndOf="parent" | 54 | app:layout_constraintEnd_toEndOf="parent" |
| 52 | - android:background="@drawable/shape_cos_gradient2"> | 55 | + app:layout_constraintStart_toStartOf="parent"> |
| 56 | + | ||
| 57 | + <LinearLayout | ||
| 58 | + android:id="@+id/ll_loyalty_banner_info" | ||
| 59 | + android:layout_width="match_parent" | ||
| 60 | + android:layout_height="wrap_content" | ||
| 61 | + android:gravity="center_vertical" | ||
| 62 | + android:orientation="horizontal" | ||
| 63 | + android:weightSum="1" | ||
| 64 | + app:layout_constraintEnd_toEndOf="parent" | ||
| 65 | + app:layout_constraintStart_toStartOf="parent" | ||
| 66 | + app:layout_constraintTop_toTopOf="parent"> | ||
| 67 | + | ||
| 68 | + <RelativeLayout | ||
| 69 | + android:layout_width="wrap_content" | ||
| 70 | + android:layout_height="wrap_content" | ||
| 71 | + android:layout_weight="0.8" | ||
| 72 | + android:gravity="start"> | ||
| 73 | + | ||
| 74 | + <ImageView | ||
| 75 | + android:id="@+id/iv_loyalty_type" | ||
| 76 | + android:layout_width="60dp" | ||
| 77 | + android:layout_height="40dp" | ||
| 78 | + android:src="@drawable/ic_traveller_white" /> | ||
| 79 | + | ||
| 80 | + <TextView | ||
| 81 | + android:layout_width="wrap_content" | ||
| 82 | + android:layout_height="wrap_content" | ||
| 83 | + android:layout_below="@+id/iv_loyalty_type" | ||
| 84 | + android:text="@string/cos_profile_loyalty_name" | ||
| 85 | + android:textColor="@android:color/white" | ||
| 86 | + android:textFontWeight="600" | ||
| 87 | + android:textSize="18sp" /> | ||
| 88 | + </RelativeLayout> | ||
| 89 | + | ||
| 90 | + <RelativeLayout | ||
| 91 | + android:layout_width="wrap_content" | ||
| 92 | + android:layout_height="wrap_content" | ||
| 93 | + android:layout_weight="0.2" | ||
| 94 | + android:gravity="end"> | ||
| 95 | + | ||
| 96 | + <de.hdodenhof.circleimageview.CircleImageView | ||
| 97 | + android:id="@+id/iv_profile_photo" | ||
| 98 | + android:layout_width="50dp" | ||
| 99 | + android:layout_height="50dp" | ||
| 100 | + android:src="@drawable/profile_photo" | ||
| 101 | + app:layout_constraintBottom_toBottomOf="parent" | ||
| 102 | + app:layout_constraintLeft_toLeftOf="parent" | ||
| 103 | + app:layout_constraintTop_toTopOf="parent" /> | ||
| 104 | + </RelativeLayout> | ||
| 105 | + </LinearLayout> | ||
| 53 | 106 | ||
| 107 | + <TextView | ||
| 108 | + android:layout_width="wrap_content" | ||
| 109 | + android:layout_height="wrap_content" | ||
| 110 | + android:background="@drawable/round_border_tr" | ||
| 111 | + android:paddingHorizontal="8dp" | ||
| 112 | + android:paddingVertical="4dp" | ||
| 113 | + android:text="@string/cos_questionnaire" | ||
| 114 | + android:textColor="@android:color/white" | ||
| 115 | + android:textFontWeight="600" | ||
| 116 | + android:textSize="15sp" | ||
| 117 | + app:layout_constraintBottom_toBottomOf="parent" | ||
| 118 | + app:layout_constraintStart_toStartOf="parent" /> | ||
| 54 | </androidx.constraintlayout.widget.ConstraintLayout> | 119 | </androidx.constraintlayout.widget.ConstraintLayout> |
| 55 | </androidx.constraintlayout.widget.ConstraintLayout> | 120 | </androidx.constraintlayout.widget.ConstraintLayout> |
| 56 | </ScrollView> | 121 | </ScrollView> | ... | ... |
| ... | @@ -3,13 +3,16 @@ | ... | @@ -3,13 +3,16 @@ |
| 3 | xmlns:app="http://schemas.android.com/apk/res-auto" | 3 | xmlns:app="http://schemas.android.com/apk/res-auto" |
| 4 | xmlns:tools="http://schemas.android.com/tools" | 4 | xmlns:tools="http://schemas.android.com/tools" |
| 5 | android:layout_width="match_parent" | 5 | android:layout_width="match_parent" |
| 6 | - android:layout_height="215dp" | 6 | + android:layout_height="240dp" |
| 7 | android:background="@drawable/bottom_border"> | 7 | android:background="@drawable/bottom_border"> |
| 8 | 8 | ||
| 9 | <LinearLayout | 9 | <LinearLayout |
| 10 | android:id="@+id/ll_carousel_icon" | 10 | android:id="@+id/ll_carousel_icon" |
| 11 | android:layout_width="match_parent" | 11 | android:layout_width="match_parent" |
| 12 | - android:layout_height="150dp"> | 12 | + app:layout_constraintStart_toStartOf="parent" |
| 13 | + app:layout_constraintEnd_toEndOf="parent" | ||
| 14 | + app:layout_constraintTop_toTopOf="parent" | ||
| 15 | + android:layout_height="170dp"> | ||
| 13 | <ImageView | 16 | <ImageView |
| 14 | android:id="@+id/imageView" | 17 | android:id="@+id/imageView" |
| 15 | android:layout_width="wrap_content" | 18 | android:layout_width="wrap_content" |
| ... | @@ -22,10 +25,13 @@ | ... | @@ -22,10 +25,13 @@ |
| 22 | <TextView | 25 | <TextView |
| 23 | android:id="@+id/textView" | 26 | android:id="@+id/textView" |
| 24 | android:layout_width="match_parent" | 27 | android:layout_width="match_parent" |
| 25 | - android:layout_height="65dp" | 28 | + android:layout_height="wrap_content" |
| 26 | android:paddingHorizontal="15dp" | 29 | android:paddingHorizontal="15dp" |
| 27 | android:paddingVertical="10dp" | 30 | android:paddingVertical="10dp" |
| 31 | + android:textSize="15sp" | ||
| 32 | + android:textStyle="bold" | ||
| 33 | + android:textColor="@color/grey" | ||
| 28 | android:text="Χρόνια πολλά με υγεία! Σου κάνουμε δώρο 5GB για τη γιορτή σου!" | 34 | android:text="Χρόνια πολλά με υγεία! Σου κάνουμε δώρο 5GB για τη γιορτή σου!" |
| 29 | app:layout_constraintTop_toBottomOf="@+id/ll_carousel_icon" | 35 | app:layout_constraintTop_toBottomOf="@+id/ll_carousel_icon" |
| 30 | - tools:layout_editor_absoluteX="-15dp" /> | 36 | + app:layout_constraintBottom_toBottomOf="parent" /> |
| 31 | </androidx.constraintlayout.widget.ConstraintLayout> | 37 | </androidx.constraintlayout.widget.ConstraintLayout> |
| ... | \ 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 | -<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" | 2 | + |
| 3 | +<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" | ||
| 3 | xmlns:app="http://schemas.android.com/apk/res-auto" | 4 | xmlns:app="http://schemas.android.com/apk/res-auto" |
| 4 | xmlns:tools="http://schemas.android.com/tools" | 5 | xmlns:tools="http://schemas.android.com/tools" |
| 5 | android:layout_width="match_parent" | 6 | android:layout_width="match_parent" |
| 6 | android:layout_height="match_parent" | 7 | android:layout_height="match_parent" |
| 7 | - android:background="#77B9AB"> | 8 | + android:background="@color/cos_cyan"> |
| 8 | 9 | ||
| 9 | - <ScrollView | 10 | + <RelativeLayout |
| 10 | android:layout_width="match_parent" | 11 | android:layout_width="match_parent" |
| 11 | - android:layout_height="match_parent"> | 12 | + android:layout_height="match_parent" |
| 12 | - <RelativeLayout | 13 | + android:paddingBottom="24dp"> |
| 14 | + | ||
| 15 | + <androidx.constraintlayout.widget.ConstraintLayout | ||
| 16 | + android:id="@+id/rl_header" | ||
| 13 | android:layout_width="match_parent" | 17 | android:layout_width="match_parent" |
| 14 | - android:layout_height="match_parent" | 18 | + android:layout_height="wrap_content" |
| 15 | - android:paddingBottom="50dp"> | 19 | + android:background="@android:color/white" |
| 20 | + android:paddingHorizontal="16dp" | ||
| 21 | + android:paddingVertical="16dp"> | ||
| 22 | + | ||
| 23 | + <de.hdodenhof.circleimageview.CircleImageView | ||
| 24 | + android:id="@+id/user_img" | ||
| 25 | + android:layout_width="60dp" | ||
| 26 | + android:layout_height="60dp" | ||
| 27 | + android:src="@drawable/profile_photo" | ||
| 28 | + app:layout_constraintStart_toStartOf="parent" | ||
| 29 | + app:layout_constraintTop_toTopOf="parent" /> | ||
| 16 | 30 | ||
| 17 | - <androidx.constraintlayout.widget.ConstraintLayout | 31 | + <RelativeLayout |
| 18 | - android:id="@+id/rl_header" | 32 | + android:id="@+id/rl_user_info" |
| 19 | - android:layout_width="match_parent" | 33 | + android:layout_width="200dp" |
| 20 | - android:layout_height="150dp" | 34 | + android:layout_height="match_parent" |
| 21 | - android:background="@android:color/white" | 35 | + android:orientation="vertical" |
| 22 | - android:orientation="horizontal" | 36 | + android:paddingLeft="10dp" |
| 23 | - android:paddingHorizontal="16dp" | 37 | + app:layout_constraintStart_toEndOf="@+id/user_img" |
| 24 | - android:paddingVertical="16dp"> | 38 | + tools:layout_editor_absoluteY="-10dp"> |
| 25 | - | 39 | + |
| 26 | - <de.hdodenhof.circleimageview.CircleImageView | 40 | + <TextView |
| 27 | - android:id="@+id/user_img" | 41 | + android:id="@+id/welcome_user_txt" |
| 28 | - android:layout_width="60dp" | 42 | + android:layout_width="230dp" |
| 29 | - android:layout_height="60dp" | 43 | + android:layout_height="wrap_content" |
| 30 | - android:src="@drawable/banner1" /> | 44 | + android:scrollHorizontally="true" |
| 31 | - | 45 | + android:text="@string/welcome_user" /> |
| 32 | - <RelativeLayout | ||
| 33 | - android:id="@+id/rl_user_info" | ||
| 34 | - android:layout_width="200dp" | ||
| 35 | - android:layout_height="match_parent" | ||
| 36 | - android:layout_toRightOf="@+id/user_img" | ||
| 37 | - android:orientation="vertical" | ||
| 38 | - android:paddingLeft="10dp" | ||
| 39 | - app:layout_constraintStart_toEndOf="@+id/user_img" | ||
| 40 | - tools:layout_editor_absoluteY="-10dp"> | ||
| 41 | 46 | ||
| 42 | - <TextView | 47 | + <ImageView |
| 43 | - android:id="@+id/welcome_user_txt" | 48 | + android:id="@+id/cosmote_one" |
| 44 | - android:layout_width="230dp" | 49 | + android:layout_width="100dp" |
| 50 | + android:layout_height="30dp" | ||
| 51 | + android:layout_below="@+id/welcome_user_txt" | ||
| 52 | + android:layout_marginTop="0dp" | ||
| 53 | + android:src="@drawable/cosmote_one" /> | ||
| 54 | + | ||
| 55 | + <LinearLayout | ||
| 56 | + android:layout_width="wrap_content" | ||
| 57 | + android:layout_height="wrap_content" | ||
| 58 | + android:layout_below="@+id/cosmote_one"> | ||
| 59 | + | ||
| 60 | + <include | ||
| 61 | + android:id="@+id/info_button" | ||
| 62 | + layout="@layout/button_with_image" | ||
| 63 | + android:layout_width="wrap_content" | ||
| 64 | + android:layout_height="wrap_content" /> | ||
| 65 | + | ||
| 66 | + <include | ||
| 67 | + android:id="@+id/info_button2" | ||
| 68 | + layout="@layout/button_with_image" | ||
| 69 | + android:layout_width="wrap_content" | ||
| 45 | android:layout_height="wrap_content" | 70 | android:layout_height="wrap_content" |
| 46 | - android:scrollHorizontally="true" | 71 | + android:layout_marginLeft="5dp" /> |
| 47 | - android:text="@string/welcome_user" /> | ||
| 48 | 72 | ||
| 49 | - <ImageView | 73 | + <include |
| 50 | - android:id="@+id/cosmote_one" | 74 | + android:id="@+id/info_button3" |
| 51 | - android:layout_width="100dp" | 75 | + layout="@layout/button_with_image" |
| 52 | - android:layout_height="30dp" | ||
| 53 | - android:layout_below="@+id/welcome_user_txt" | ||
| 54 | - android:layout_marginTop="0dp" | ||
| 55 | - android:src="@drawable/cosmote_one" /> | ||
| 56 | - | ||
| 57 | - <LinearLayout | ||
| 58 | android:layout_width="wrap_content" | 76 | android:layout_width="wrap_content" |
| 59 | android:layout_height="wrap_content" | 77 | android:layout_height="wrap_content" |
| 60 | - android:layout_below="@+id/cosmote_one"> | 78 | + android:layout_marginLeft="5dp" /> |
| 61 | - | 79 | + </LinearLayout> |
| 62 | - <include | 80 | + </RelativeLayout> |
| 63 | - android:id="@+id/info_button" | ||
| 64 | - layout="@layout/button_with_image" | ||
| 65 | - android:layout_width="wrap_content" | ||
| 66 | - android:layout_height="wrap_content" /> | ||
| 67 | - | ||
| 68 | - <include | ||
| 69 | - android:id="@+id/info_button2" | ||
| 70 | - layout="@layout/button_with_image" | ||
| 71 | - android:layout_width="wrap_content" | ||
| 72 | - android:layout_height="wrap_content" | ||
| 73 | - android:layout_marginLeft="5dp" /> | ||
| 74 | - | ||
| 75 | - <include | ||
| 76 | - android:id="@+id/info_button3" | ||
| 77 | - layout="@layout/button_with_image" | ||
| 78 | - android:layout_width="wrap_content" | ||
| 79 | - android:layout_height="wrap_content" | ||
| 80 | - android:layout_marginLeft="5dp" /> | ||
| 81 | - </LinearLayout> | ||
| 82 | - </RelativeLayout> | ||
| 83 | 81 | ||
| 84 | - <ImageView | 82 | + <ImageView |
| 85 | - android:layout_width="25dp" | 83 | + android:layout_width="25dp" |
| 86 | - android:layout_height="25dp" | 84 | + android:layout_height="25dp" |
| 87 | - android:src="@drawable/filters_icon" | 85 | + android:src="@drawable/filters_icon" |
| 88 | - app:layout_constraintEnd_toEndOf="parent" | 86 | + app:layout_constraintEnd_toEndOf="parent" |
| 89 | - app:layout_constraintHorizontal_bias="0.663" | 87 | + app:layout_constraintTop_toTopOf="@+id/user_img" /> |
| 90 | - app:layout_constraintStart_toEndOf="@+id/rl_user_info" | 88 | + </androidx.constraintlayout.widget.ConstraintLayout> |
| 91 | - tools:layout_editor_absoluteY="-1dp" /> | ||
| 92 | - </androidx.constraintlayout.widget.ConstraintLayout> | ||
| 93 | 89 | ||
| 94 | - <RelativeLayout | 90 | + <RelativeLayout |
| 95 | - android:id="@+id/rl_home_campaigns" | 91 | + android:id="@+id/rl_home_campaigns" |
| 96 | - android:layout_width="match_parent" | 92 | + android:layout_width="match_parent" |
| 97 | - android:layout_height="wrap_content" | 93 | + android:layout_height="wrap_content" |
| 98 | - android:layout_below="@id/rl_header" | 94 | + android:layout_below="@id/rl_header" |
| 99 | - android:paddingHorizontal="12dp"> | 95 | + android:layout_marginTop="16dp" |
| 96 | + android:paddingHorizontal="16dp"> | ||
| 100 | 97 | ||
| 101 | - <include layout="@layout/carousel_item" /> | 98 | + <include layout="@layout/carousel_item" /> |
| 102 | - </RelativeLayout> | 99 | + </RelativeLayout> |
| 103 | 100 | ||
| 104 | - <LinearLayout | 101 | + <LinearLayout |
| 105 | - android:id="@+id/rl_home_coupons" | 102 | + android:id="@+id/rl_home_coupons" |
| 106 | - android:layout_width="match_parent" | 103 | + android:layout_width="match_parent" |
| 107 | - android:layout_height="wrap_content" | 104 | + android:layout_height="wrap_content" |
| 108 | - android:layout_below="@id/rl_home_campaigns" | 105 | + android:layout_below="@id/rl_home_campaigns" |
| 109 | - android:layout_marginVertical="25dp" | 106 | + android:layout_marginVertical="25dp" |
| 110 | - android:paddingHorizontal="15dp"> | 107 | + android:paddingHorizontal="15dp"> |
| 111 | -<!-- <androidx.recyclerview.widget.RecyclerView--> | 108 | + <!-- <androidx.recyclerview.widget.RecyclerView--> |
| 112 | -<!-- android:id="@+id/rv_home_coupons"--> | 109 | + <!-- android:id="@+id/rv_home_coupons"--> |
| 113 | -<!-- android:layout_width="match_parent"--> | 110 | + <!-- android:layout_width="match_parent"--> |
| 114 | -<!-- android:layout_height="wrap_content"--> | 111 | + <!-- android:layout_height="wrap_content"--> |
| 115 | -<!-- android:layout_marginBottom="8dp"--> | 112 | + <!-- android:layout_marginBottom="8dp"--> |
| 116 | -<!-- android:clipToPadding="false"--> | 113 | + <!-- android:clipToPadding="false"--> |
| 117 | -<!-- android:orientation="horizontal"--> | 114 | + <!-- android:orientation="horizontal"--> |
| 118 | -<!-- android:paddingEnd="10dp"--> | 115 | + <!-- android:paddingEnd="10dp"--> |
| 119 | -<!-- />--> | 116 | + <!-- />--> |
| 120 | - <include layout="@layout/coupon_layout" /> | 117 | + <include layout="@layout/coupon_layout" /> |
| 121 | - </LinearLayout> | 118 | + </LinearLayout> |
| 119 | + | ||
| 120 | + <androidx.constraintlayout.widget.ConstraintLayout | ||
| 121 | + android:id="@+id/rl_home_info_widget" | ||
| 122 | + android:layout_width="match_parent" | ||
| 123 | + android:layout_height="wrap_content" | ||
| 124 | + android:layout_below="@id/rl_home_coupons" | ||
| 125 | + android:layout_marginHorizontal="10dp" | ||
| 126 | + android:background="@drawable/banner_border"> | ||
| 122 | 127 | ||
| 123 | - <androidx.constraintlayout.widget.ConstraintLayout | 128 | + <include layout="@layout/info_widget" /> |
| 124 | - android:id="@+id/rl_home_info_widget" | 129 | + </androidx.constraintlayout.widget.ConstraintLayout> |
| 125 | - android:layout_width="match_parent" | ||
| 126 | - android:layout_height="wrap_content" | ||
| 127 | - android:layout_below="@id/rl_home_coupons" | ||
| 128 | - android:layout_marginHorizontal="10dp" | ||
| 129 | - android:background="@drawable/banner_border"> | ||
| 130 | 130 | ||
| 131 | - <include layout="@layout/info_widget" /> | 131 | + <TextView |
| 132 | - </androidx.constraintlayout.widget.ConstraintLayout> | 132 | + android:id="@+id/hsv_title" |
| 133 | + android:layout_width="match_parent" | ||
| 134 | + android:layout_height="40dp" | ||
| 135 | + android:layout_below="@+id/rl_home_info_widget" | ||
| 136 | + android:layout_marginTop="20dp" | ||
| 137 | + android:background="@android:color/white" | ||
| 138 | + android:paddingHorizontal="25dp" | ||
| 139 | + android:paddingTop="10dp" | ||
| 140 | + android:text="Βρες γρήγορα" | ||
| 141 | + android:textColor="#3C464F" /> | ||
| 142 | + | ||
| 143 | + <HorizontalScrollView | ||
| 144 | + android:id="@+id/ll_add" | ||
| 145 | + android:layout_width="match_parent" | ||
| 146 | + android:layout_height="110dp" | ||
| 147 | + android:layout_below="@id/hsv_title" | ||
| 148 | + android:background="@android:color/white" | ||
| 149 | + android:paddingBottom="10dp" | ||
| 150 | + android:scrollbars="none"> | ||
| 133 | 151 | ||
| 134 | - <TextView | 152 | + <LinearLayout |
| 135 | - android:id="@+id/hsv_title" | ||
| 136 | - android:layout_width="match_parent" | ||
| 137 | - android:layout_height="40dp" | ||
| 138 | - android:layout_below="@+id/rl_home_info_widget" | ||
| 139 | - android:layout_marginTop="20dp" | ||
| 140 | - android:background="@android:color/white" | ||
| 141 | - android:paddingHorizontal="25dp" | ||
| 142 | - android:paddingTop="10dp" | ||
| 143 | - android:text="Βρες γρήγορα" | ||
| 144 | - android:textColor="#3C464F" /> | ||
| 145 | - | ||
| 146 | - <HorizontalScrollView | ||
| 147 | - android:id="@+id/ll_add" | ||
| 148 | android:layout_width="match_parent" | 153 | android:layout_width="match_parent" |
| 149 | - android:layout_height="110dp" | 154 | + android:layout_height="match_parent" |
| 150 | - android:layout_below="@id/hsv_title" | 155 | + android:divider="@drawable/divider" |
| 151 | - android:background="@android:color/white" | 156 | + android:showDividers="middle"> |
| 152 | - android:paddingBottom="10dp" | ||
| 153 | - android:scrollbars="none"> | ||
| 154 | 157 | ||
| 155 | <LinearLayout | 158 | <LinearLayout |
| 156 | - android:layout_width="match_parent" | 159 | + android:layout_width="150dp" |
| 157 | android:layout_height="match_parent" | 160 | android:layout_height="match_parent" |
| 158 | - android:divider="@drawable/divider" | 161 | + android:gravity="center" |
| 159 | - android:showDividers="middle"> | 162 | + android:orientation="vertical" |
| 163 | + android:paddingHorizontal="10dp"> | ||
| 164 | + | ||
| 165 | + <ImageView | ||
| 166 | + android:layout_width="50dp" | ||
| 167 | + android:layout_height="50dp" | ||
| 168 | + android:src="@drawable/doc" /> | ||
| 160 | 169 | ||
| 161 | - <LinearLayout | 170 | + <TextView |
| 162 | - android:layout_width="150dp" | 171 | + android:layout_width="match_parent" |
| 163 | - android:layout_height="match_parent" | 172 | + android:layout_height="40dp" |
| 164 | android:gravity="center" | 173 | android:gravity="center" |
| 165 | - android:orientation="vertical" | 174 | + android:scrollHorizontally="true" |
| 166 | - android:paddingHorizontal="10dp"> | 175 | + android:text="Πληρωμή λογαριασμού" |
| 167 | - | 176 | + android:textAlignment="center" |
| 168 | - <ImageView | 177 | + android:textColor="#3C464F" /> |
| 169 | - android:layout_width="50dp" | 178 | + </LinearLayout> |
| 170 | - android:layout_height="50dp" | 179 | + |
| 171 | - android:src="@drawable/doc" /> | 180 | + <LinearLayout |
| 172 | - | 181 | + android:layout_width="150dp" |
| 173 | - <TextView | 182 | + android:layout_height="match_parent" |
| 174 | - android:layout_width="match_parent" | 183 | + android:gravity="center" |
| 175 | - android:layout_height="40dp" | 184 | + android:orientation="vertical" |
| 176 | - android:gravity="center" | 185 | + android:paddingHorizontal="10dp"> |
| 177 | - android:scrollHorizontally="true" | 186 | + |
| 178 | - android:text="Πληρωμή λογαριασμού" | 187 | + <ImageView |
| 179 | - android:textAlignment="center" | 188 | + android:layout_width="50dp" |
| 180 | - android:textColor="#3C464F" /> | 189 | + android:layout_height="50dp" |
| 181 | - </LinearLayout> | 190 | + android:src="@drawable/message" /> |
| 182 | - | 191 | + |
| 183 | - <LinearLayout | 192 | + <TextView |
| 184 | - android:layout_width="150dp" | 193 | + android:layout_width="match_parent" |
| 185 | - android:layout_height="match_parent" | 194 | + android:layout_height="40dp" |
| 186 | android:gravity="center" | 195 | android:gravity="center" |
| 187 | - android:orientation="vertical" | 196 | + android:scrollHorizontally="true" |
| 188 | - android:paddingHorizontal="10dp"> | 197 | + android:text="Υποστήριξη" |
| 189 | - | 198 | + android:textAlignment="center" |
| 190 | - <ImageView | 199 | + android:textColor="#3C464F" /> |
| 191 | - android:layout_width="50dp" | 200 | + </LinearLayout> |
| 192 | - android:layout_height="50dp" | 201 | + |
| 193 | - android:src="@drawable/message" /> | 202 | + <LinearLayout |
| 194 | - | 203 | + android:layout_width="150dp" |
| 195 | - <TextView | 204 | + android:layout_height="match_parent" |
| 196 | - android:layout_width="match_parent" | 205 | + android:gravity="center" |
| 197 | - android:layout_height="40dp" | 206 | + android:orientation="vertical" |
| 198 | - android:gravity="center" | 207 | + android:paddingHorizontal="10dp"> |
| 199 | - android:scrollHorizontally="true" | 208 | + |
| 200 | - android:text="Υποστήριξη" | 209 | + <ImageView |
| 201 | - android:textAlignment="center" | 210 | + android:layout_width="50dp" |
| 202 | - android:textColor="#3C464F" /> | 211 | + android:layout_height="50dp" |
| 203 | - </LinearLayout> | 212 | + android:src="@drawable/doc" /> |
| 204 | - | 213 | + |
| 205 | - <LinearLayout | 214 | + <TextView |
| 206 | - android:layout_width="150dp" | 215 | + android:layout_width="match_parent" |
| 207 | - android:layout_height="match_parent" | 216 | + android:layout_height="40dp" |
| 208 | android:gravity="center" | 217 | android:gravity="center" |
| 209 | - android:orientation="vertical" | 218 | + android:scrollHorizontally="true" |
| 210 | - android:paddingHorizontal="10dp"> | 219 | + android:text="Πληρωμή λογαριασμού" |
| 211 | - | 220 | + android:textAlignment="center" |
| 212 | - <ImageView | 221 | + android:textColor="#3C464F" /> |
| 213 | - android:layout_width="50dp" | ||
| 214 | - android:layout_height="50dp" | ||
| 215 | - android:src="@drawable/doc" /> | ||
| 216 | - | ||
| 217 | - <TextView | ||
| 218 | - android:layout_width="match_parent" | ||
| 219 | - android:layout_height="40dp" | ||
| 220 | - android:gravity="center" | ||
| 221 | - android:scrollHorizontally="true" | ||
| 222 | - android:text="Πληρωμή λογαριασμού" | ||
| 223 | - android:textAlignment="center" | ||
| 224 | - android:textColor="#3C464F" /> | ||
| 225 | - </LinearLayout> | ||
| 226 | </LinearLayout> | 222 | </LinearLayout> |
| 227 | - </HorizontalScrollView> | 223 | + </LinearLayout> |
| 228 | - </RelativeLayout> | 224 | + </HorizontalScrollView> |
| 229 | - </ScrollView> | 225 | + </RelativeLayout> |
| 230 | -</RelativeLayout> | 226 | +</ScrollView> | ... | ... |
| ... | @@ -14,4 +14,5 @@ | ... | @@ -14,4 +14,5 @@ |
| 14 | <color name="cos_green2">#52DF5A</color> | 14 | <color name="cos_green2">#52DF5A</color> |
| 15 | <color name="green_dark">#1DA87A</color> | 15 | <color name="green_dark">#1DA87A</color> |
| 16 | <color name="cos_blue2">#0478BE</color> | 16 | <color name="cos_blue2">#0478BE</color> |
| 17 | + <color name="white_tr2">#77FFFFFF</color> | ||
| 17 | </resources> | 18 | </resources> |
| ... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
| ... | @@ -20,4 +20,6 @@ | ... | @@ -20,4 +20,6 @@ |
| 20 | <string name="menu_shop">Shop</string> | 20 | <string name="menu_shop">Shop</string> |
| 21 | <string name="menu_loyalty">Loyalty</string> | 21 | <string name="menu_loyalty">Loyalty</string> |
| 22 | <string name="menu_profile">Προφίλ</string> | 22 | <string name="menu_profile">Προφίλ</string> |
| 23 | + <string name="cos_profile_loyalty_name">Γιώργος Γεωργίου</string> | ||
| 24 | + <string name="cos_questionnaire">Ερωτηματολόγιο</string> | ||
| 23 | </resources> | 25 | </resources> |
| ... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
-
Please register or login to post a comment