Showing
3 changed files
with
17 additions
and
5 deletions
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="#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 |
... | @@ -9,7 +9,7 @@ | ... | @@ -9,7 +9,7 @@ |
9 | android:id="@+id/ll_myphone" | 9 | android:id="@+id/ll_myphone" |
10 | android:layout_width="wrap_content" | 10 | android:layout_width="wrap_content" |
11 | android:layout_height="wrap_content" | 11 | android:layout_height="wrap_content" |
12 | - android:background="@drawable/banner_border_grey_bg" | 12 | + android:background="@drawable/banner_border_grey_bg4" |
13 | android:orientation="horizontal" | 13 | android:orientation="horizontal" |
14 | android:paddingHorizontal="12dp" | 14 | android:paddingHorizontal="12dp" |
15 | android:paddingVertical="6dp" | 15 | android:paddingVertical="6dp" |
... | @@ -71,7 +71,6 @@ | ... | @@ -71,7 +71,6 @@ |
71 | android:id="@+id/iv_one_logo" | 71 | android:id="@+id/iv_one_logo" |
72 | android:layout_width="100dp" | 72 | android:layout_width="100dp" |
73 | android:layout_height="30dp" | 73 | android:layout_height="30dp" |
74 | - android:layout_marginStart="8dp" | ||
75 | android:layout_marginTop="6dp" | 74 | android:layout_marginTop="6dp" |
76 | android:src="@drawable/cosmote_one" | 75 | android:src="@drawable/cosmote_one" |
77 | app:layout_constraintEnd_toEndOf="@+id/iv_progress" | 76 | app:layout_constraintEnd_toEndOf="@+id/iv_progress" |
... | @@ -91,13 +90,13 @@ | ... | @@ -91,13 +90,13 @@ |
91 | android:id="@+id/ll_data" | 90 | android:id="@+id/ll_data" |
92 | android:layout_width="0dp" | 91 | android:layout_width="0dp" |
93 | android:layout_height="wrap_content" | 92 | android:layout_height="wrap_content" |
94 | - android:background="@drawable/banner_border_white_bg_right_radius" | 93 | + android:background="@drawable/banner_border_white2" |
95 | android:gravity="center" | 94 | android:gravity="center" |
96 | android:orientation="horizontal" | 95 | android:orientation="horizontal" |
97 | android:paddingHorizontal="12dp" | 96 | android:paddingHorizontal="12dp" |
98 | android:paddingVertical="6dp" | 97 | android:paddingVertical="6dp" |
99 | - app:layout_constraintEnd_toStartOf="@+id/ll_voice" | ||
100 | app:layout_constraintBottom_toBottomOf="parent" | 98 | app:layout_constraintBottom_toBottomOf="parent" |
99 | + app:layout_constraintEnd_toStartOf="@+id/ll_voice" | ||
101 | app:layout_constraintStart_toStartOf="parent" | 100 | app:layout_constraintStart_toStartOf="parent" |
102 | app:layout_constraintTop_toTopOf="parent"> | 101 | app:layout_constraintTop_toTopOf="parent"> |
103 | 102 | ||
... | @@ -135,8 +134,8 @@ | ... | @@ -135,8 +134,8 @@ |
135 | android:orientation="horizontal" | 134 | android:orientation="horizontal" |
136 | android:paddingHorizontal="12dp" | 135 | android:paddingHorizontal="12dp" |
137 | android:paddingVertical="6dp" | 136 | android:paddingVertical="6dp" |
138 | - app:layout_constraintEnd_toStartOf="@+id/ll_sms" | ||
139 | app:layout_constraintBottom_toBottomOf="parent" | 137 | app:layout_constraintBottom_toBottomOf="parent" |
138 | + app:layout_constraintEnd_toStartOf="@+id/ll_sms" | ||
140 | app:layout_constraintStart_toEndOf="@+id/ll_data" | 139 | app:layout_constraintStart_toEndOf="@+id/ll_data" |
141 | app:layout_constraintTop_toTopOf="parent"> | 140 | app:layout_constraintTop_toTopOf="parent"> |
142 | 141 | ... | ... |
-
Please register or login to post a comment