[android] Unify border radius in navigation

Signed-off-by: Jean-Baptiste <jeanbaptiste.charron@outlook.fr>
This commit is contained in:
Jean-Baptiste
2025-10-28 18:08:49 +01:00
committed by jeanbaptisteC
parent ae9dc62b54
commit 12b9504daa
4 changed files with 6 additions and 6 deletions

View File

@@ -2,5 +2,5 @@
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="@color/bg_cards"/>
<corners android:radius="4dp"/>
<corners android:radius="8dp"/>
</shape>

View File

@@ -2,5 +2,5 @@
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="@color/bg_primary"/>
<corners android:radius="4dp"/>
<corners android:radius="8dp"/>
</shape>

View File

@@ -19,7 +19,7 @@
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/margin_half_plus_eight"
android:layout_marginEnd="@dimen/margin_quarter"
app:cardCornerRadius="8dp"
app:cardCornerRadius="@dimen/margin_half"
android:elevation="@dimen/nav_elevation"
app:layout_constraintTop_toBottomOf="@+id/statutbar"
app:layout_constraintStart_toEndOf="@+id/nav_next_turn_container"
@@ -133,7 +133,7 @@
app:lanesActiveLaneTintColor="?navLaneArrowActiveColor"
app:lanesInactiveLaneTintColor="?navLaneArrowInactiveColor"
app:lanesBackgroundColor="?colorPrimary"
app:lanesCornerRadius="@dimen/margin_quarter"
app:lanesCornerRadius="@dimen/margin_half"
app:lanesEditModeLanesCount="10"
tools:visibility="visible" />

View File

@@ -20,7 +20,7 @@
android:layout_marginTop="@dimen/margin_half_plus"
android:layout_marginStart="@dimen/nav_street_left"
android:layout_marginEnd="@dimen/margin_quarter"
app:cardCornerRadius="8dp"
app:cardCornerRadius="@dimen/margin_half"
android:elevation="@dimen/nav_elevation"
app:layout_constraintTop_toBottomOf="@+id/statutbar"
android:clickable="true"
@@ -136,7 +136,7 @@
app:lanesActiveLaneTintColor="?navLaneArrowActiveColor"
app:lanesInactiveLaneTintColor="?navLaneArrowInactiveColor"
app:lanesBackgroundColor="?navLanesBackgroundColor"
app:lanesCornerRadius="@dimen/margin_quarter"
app:lanesCornerRadius="@dimen/margin_half"
app:lanesEditModeLanesCount="5"
tools:visibility="visible" />