Panagiotis Triantafyllou

minor tuning 2

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="#415564"/>
<corners android:topLeftRadius="4dp"/>
<padding android:left="0dp" android:top="0dp" android:right="0dp" android:bottom="0dp" />
</shape>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="#415564"/>
<corners android:bottomRightRadius="4dp"/>
<padding android:left="0dp" android:top="0dp" android:right="0dp" android:bottom="0dp" />
</shape>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="@android:color/white"/>
<corners android:bottomRightRadius="4dp"/>
<padding android:left="0dp" android:top="0dp" android:right="0dp" android:bottom="0dp" />
</shape>
\ No newline at end of file
......@@ -221,12 +221,10 @@
app:layout_constraintStart_toStartOf="@+id/iv_progress"
app:layout_constraintTop_toBottomOf="@+id/iv_progress" />
<LinearLayout
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:orientation="horizontal"
android:weightSum="3"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
......@@ -236,11 +234,15 @@
android:id="@+id/ll_data"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1.2"
android:background="@drawable/banner_border_grey_bg"
android:background="@drawable/banner_border_white_bg_right_radius"
android:elevation="3dp"
android:gravity="center"
android:orientation="horizontal"
android:paddingHorizontal="12dp"
android:paddingVertical="6dp">
android:paddingVertical="6dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
<ImageView
android:id="@+id/iv_widget_mb"
......@@ -271,11 +273,14 @@
android:id="@+id/ll_voice"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="0.9"
android:background="@drawable/banner_border_grey_bg3"
android:background="@drawable/banner_border_grey_bg_left_radius"
android:gravity="center"
android:orientation="horizontal"
android:paddingHorizontal="12dp"
android:paddingVertical="6dp">
android:paddingVertical="6dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toEndOf="@+id/ll_data"
app:layout_constraintTop_toTopOf="parent">
<ImageView
android:id="@+id/iv_widget_voice"
......@@ -306,11 +311,15 @@
android:id="@+id/ll_sms"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="0.9"
android:background="@drawable/banner_border_grey_bg3"
android:background="@drawable/banner_border_grey_bg_right_radius"
android:gravity="center"
android:orientation="horizontal"
android:paddingHorizontal="12dp"
android:paddingVertical="6dp">
android:paddingVertical="6dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@+id/ll_voice"
app:layout_constraintTop_toTopOf="parent">
<ImageView
android:id="@+id/iv_widget_sms"
......@@ -336,7 +345,7 @@
app:layout_constraintTop_toTopOf="@+id/horizontal_outer_guideline2"
app:layout_constraintVertical_bias="0.47" />
</LinearLayout>
</LinearLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
<!-- <ImageView-->
......