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
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<?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">
 
    <xyz.doikki.videoplayer.player.VideoView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:screenScaleType="type_center_crop"
        app:playerBackgroundColor="@color/white"
        android:id="@+id/player"/>
 
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/tv_skip"
        android:text="跳过"
        android:textColor="@color/white"
        android:textSize="20sp"
        android:layout_marginBottom="40dp"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintBottom_toBottomOf="parent"
        android:paddingStart="10dp"
        android:fontFamily="@font/fly_flower_song"
        android:paddingTop="5dp"
        android:paddingBottom="5dp"
        android:paddingEnd="10dp"/>
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/tv_action"
        app:layout_constraintBottom_toTopOf="@id/tv_skip"
        android:layout_marginBottom="25dp"
        android:textColor="@color/white"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        android:paddingVertical="14dp"
        android:textSize="24sp"
        android:paddingHorizontal="45dp"
        android:fontFamily="@font/fly_flower_song"
        android:textStyle="bold"
        android:background="@drawable/bg_white_line_alpha"
        android:text="个性化定制"/>
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        android:textSize="19sp"
        android:textColor="@color/white"
        android:fontFamily="@font/fly_flower_song"
        app:layout_constraintBottom_toTopOf="@id/tv_action"
        android:layout_marginBottom="20dp"
        android:text="愿它成为您心灵栖息的幸福家园"/>
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        android:layout_marginTop="47dp"
        android:textSize="41sp"
        android:text="泉疗愈空间"
        android:fontFamily="@font/fly_flower_song"
        android:textColor="@color/white"
        android:id="@+id/tv_1"/>
    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:layout_constraintTop_toBottomOf="@id/tv_1"
        android:gravity="center"
        android:lineSpacingExtra="10dp"
        android:fontFamily="@font/fly_flower_song"
        android:text="亲爱的家人,温暖喜悦问候您\n我是心泉老师\n欢迎来到泉疗愈空间\n愿这一方空间为您带来\n放松 平和 宁静 与喜悦"
        android:textColor="@color/white"
        android:layout_marginTop="36dp"
        android:textSize="18sp"/>
</androidx.constraintlayout.widget.ConstraintLayout>