lmw
2025-04-24 718f31c92e2029d05260810435a2c70cef6e6ce5
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
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    xmlns:app="http://schemas.android.com/apk/res-auto">
    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/tv_msg"
        app:layout_constraintTop_toTopOf="parent"
        android:layout_marginTop="24dp"
        android:layout_marginHorizontal="20dp"
        android:textSize="13sp"
        android:textColor="@color/textColor"/>
    <TextView
        android:layout_width="match_parent"
        android:layout_height="42dp"
        android:id="@+id/tv_action"
        android:layout_marginTop="40dp"
        app:layout_constraintTop_toBottomOf="@id/tv_msg"
        android:layout_marginHorizontal="51dp"
        android:gravity="center"
        android:textColor="@color/white"
        android:background="@drawable/bg_green_20dp"
        />
</androidx.constraintlayout.widget.ConstraintLayout>