<?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="match_parent">
|
|
<LinearLayout
|
android:id="@+id/tip_parent_cl"
|
android:layout_width="0dp"
|
android:layout_height="wrap_content"
|
android:layout_marginStart="@dimen/dp_128"
|
android:layout_marginEnd="@dimen/dp_128"
|
android:background="@drawable/dialog_flashing_box"
|
android:gravity="center"
|
android:orientation="vertical"
|
android:paddingTop="@dimen/dp_16"
|
android:paddingBottom="@dimen/dp_16"
|
app:layout_constraintBottom_toBottomOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintTop_toTopOf="parent">
|
|
<TextView
|
android:id="@+id/tip_image_tv"
|
android:layout_width="@dimen/dp_36"
|
android:layout_height="@dimen/dp_36"
|
android:background="@drawable/tip_fail" />
|
|
<TextView
|
android:id="@+id/tip_content_tv"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="8dp"
|
android:gravity="center"
|
android:paddingStart="@dimen/dp_4"
|
android:paddingEnd="@dimen/dp_4"
|
android:textColor="@color/text_FFFFFFFF"
|
android:textSize="@dimen/text_14" />
|
|
|
</LinearLayout>
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|