[8.0.0]车龙事件进MogoMind

This commit is contained in:
xuxinchao
2025-05-09 17:11:01 +08:00
parent df6ddef79f
commit 72647f150f
8 changed files with 470 additions and 0 deletions

View File

@@ -0,0 +1,43 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/clRoadLayout"
android:layout_width="@dimen/dp_90"
android:layout_height="@dimen/dp_120"
android:minWidth="@dimen/dp_90"
android:maxWidth="@dimen/dp_180"
xmlns:app="http://schemas.android.com/apk/res-auto"
>
<ImageView
android:id="@+id/ivRoadType"
android:layout_width="@dimen/dp_55"
android:layout_height="@dimen/dp_55"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
android:contentDescription="@string/nde_road_icon"
/>
<TextView
android:id="@+id/tvRoadStatus"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toBottomOf="@id/ivRoadType"
android:textSize="@dimen/sp_22"
android:layout_marginTop="@dimen/dp_12"
/>
<View
android:id="@+id/viewDivider"
android:layout_width="@dimen/dp_4"
android:layout_height="@dimen/dp_0"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintRight_toRightOf="parent"
android:background="@color/msg_nde_road_passenger_divider"
/>
</androidx.constraintlayout.widget.ConstraintLayout>