罗明文
2024-06-16 9673bcd57c6100ad9fdfbee728ef078104511fc1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?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>