<?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"
|
android:background="@mipmap/bg_hehua">
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintTop_toTopOf="parent"
|
android:layout_marginTop="90dp"
|
android:text="亲爱的家人"
|
android:textSize="38sp"
|
android:id="@+id/tv_1"
|
android:fontFamily="@font/fly_flower_song"
|
android:textColor="@color/deepGreen"/>
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:id="@+id/tv_2"
|
app:layout_constraintTop_toBottomOf="@id/tv_1"
|
android:gravity="center"
|
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
android:layout_marginTop="40dp"
|
android:fontFamily="@font/fly_flower_song"
|
android:textSize="22sp"
|
android:textColor="#404040"
|
android:lineSpacingExtra="10dp"
|
android:text="请您遵从本心\n回答以下问题\n挑选您喜欢的空间环境\n为您定制专属您的\n泉疗愈空间"/>
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:id="@+id/tv_3"
|
app:layout_constraintTop_toBottomOf="@id/tv_2"
|
android:gravity="center"
|
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
android:layout_marginTop="60dp"
|
android:textStyle="bold"
|
android:textSize="20sp"
|
android:textColor="#404040"
|
android:fontFamily="@font/fly_flower_song"
|
android:lineSpacingExtra="10dp"
|
android:text="@string/tx_guide"/>
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintBottom_toBottomOf="parent"
|
android:layout_marginBottom="40dp"
|
android:padding="10dp"
|
android:text="跳过"
|
android:textStyle="bold"
|
android:fontFamily="@font/fly_flower_song"
|
android:id="@+id/tv_skip"
|
android:textColor="@color/textColor"
|
android:textSize="18sp"/>
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
app:layout_constraintBottom_toTopOf="@id/tv_skip"
|
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
android:textSize="22sp"
|
android:textColor="@color/white"
|
android:textStyle="bold"
|
android:fontFamily="@font/fly_flower_song"
|
android:paddingVertical="14dp"
|
android:paddingHorizontal="90dp"
|
android:background="@drawable/bg_mid_green_30"
|
android:id="@+id/tv_action"
|
android:layout_marginBottom="50dp"
|
android:text="开始答题"/>
|
</androidx.constraintlayout.widget.ConstraintLayout>
|