31 lines
1.4 KiB
XML
31 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/dp_500"
|
|
android:layout_marginStart="@dimen/dp_100"
|
|
android:layout_marginTop="@dimen/dp_15"
|
|
android:layout_marginEnd="@dimen/dp_100"
|
|
android:layout_marginBottom="@dimen/dp_15">
|
|
|
|
<ImageView
|
|
android:id="@+id/error_tip_image"
|
|
android:layout_width="@dimen/dp_140"
|
|
android:layout_height="@dimen/dp_140"
|
|
android:layout_marginStart="@dimen/dp_856"
|
|
android:layout_marginTop="@dimen/dp_200"
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
<TextView
|
|
android:id="@+id/error_title"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="@dimen/dp_65"
|
|
android:layout_marginTop="@dimen/dp_20"
|
|
android:text="自动驾驶车辆存在风险"
|
|
android:textColor="@color/module_commons_wm_dialog_text_textColor"
|
|
android:textSize="@dimen/dp_64"
|
|
app:layout_constraintLeft_toRightOf="@+id/error_tip_image"
|
|
app:layout_constraintTop_toTopOf="@+id/error_tip_image" />
|
|
</androidx.constraintlayout.widget.ConstraintLayout> |