From cfd17350b5422209096bdfa39a5e0084d8132653 Mon Sep 17 00:00:00 2001 From: Nathan Varner Date: Sat, 18 Mar 2023 15:18:21 -0400 Subject: [PATCH] [android] Moves lane assist away from the center When centered, the lane assist often covers the route onscreen. By moving it to the side, it is less likely to cover the center of the screen, so it is less likely to cover the route. Needed for: #1404 Signed-off-by: Nathan Varner --- android/res/layout/layout_nav_top.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/android/res/layout/layout_nav_top.xml b/android/res/layout/layout_nav_top.xml index 2b8a9c0e90..539446b49b 100644 --- a/android/res/layout/layout_nav_top.xml +++ b/android/res/layout/layout_nav_top.xml @@ -113,6 +113,7 @@ app:layout_constrainedWidth="true" app:layout_constraintHeight_percent="@fraction/nav_lane_height" app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintHorizontal_bias="0.0" app:layout_constraintStart_toEndOf="@+id/nav_next_turn_container" app:layout_constraintTop_toBottomOf="@+id/street_frame" android:visibility="gone"