lmw
3 天以前 855a7e18a795f0db2453a19e3e8f26ba2ff553b4
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
<?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"
    xmlns:tools="http://schemas.android.com/tools">
 
    <androidx.constraintlayout.widget.ConstraintLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@drawable/bg_white_8dp"
        android:layout_marginTop="26dp"
        android:layout_marginBottom="100dp"
        android:layout_marginHorizontal="230dp">
 
        <TextView
            android:id="@+id/tv_tip"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="26dp"
            android:drawableTop="@mipmap/successs"
            android:drawablePadding="27dp"
            android:gravity="center"
            android:text="恭喜你,已听完全部故事!获得200积分!"
            android:textStyle="bold"
            android:textSize="18sp"
            android:textColor="@color/textColor"
            app:layout_constraintTop_toTopOf="parent" />
 
 
 
        <TextView
            app:layout_constraintTop_toBottomOf="@id/tv_tip"
            app:layout_constraintBottom_toBottomOf="parent"
            android:id="@+id/tv_back"
            style="@style/style_btn_cancel"
            android:layout_width="wrap_content"
            android:paddingHorizontal="34dp"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintEnd_toEndOf="parent"
            android:layout_height="wrap_content"
            android:text="返回主页" />
    </androidx.constraintlayout.widget.ConstraintLayout>
 
 
</androidx.constraintlayout.widget.ConstraintLayout>