<?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"
|
xmlns:tools="http://schemas.android.com/tools"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent">
|
|
<RelativeLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:background="@drawable/shape_white_top_20r"
|
app:layout_constraintBottom_toBottomOf="parent">
|
|
<ImageView
|
android:id="@+id/iv_close"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_alignParentRight="true"
|
android:layout_marginStart="10dp"
|
android:layout_marginTop="10dp"
|
android:layout_marginEnd="10dp"
|
android:layout_marginBottom="10dp"
|
android:padding="10dp"
|
android:src="@mipmap/icon_close" />
|
|
<TextView
|
android:id="@+id/mtv"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_centerHorizontal="true"
|
android:layout_marginTop="20dp"
|
android:text="参与门店"
|
android:textColor="@color/black"
|
android:textSize="16sp"
|
android:textStyle="bold" />
|
|
<TextView
|
android:id="@+id/mtvinfo"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_below="@+id/mtv"
|
android:layout_marginTop="20dp"
|
android:layout_marginBottom="60dp"
|
android:gravity="center_horizontal"
|
android:minHeight="100dp"
|
android:paddingHorizontal="20dp"
|
android:textColor="@color/textColor66"
|
android:textSize="14sp"
|
tools:text="门店,门店,门店,门店,门店,门店," />
|
|
|
</RelativeLayout>
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|