<?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">
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="0dp"
|
app:layout_constraintBottom_toBottomOf="@id/spacer"
|
app:layout_constraintTop_toTopOf="parent"
|
android:background="@mipmap/bg_flower"/>
|
<androidx.constraintlayout.widget.ConstraintLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:id="@+id/cl_bottom"
|
app:layout_constraintBottom_toBottomOf="parent"
|
android:background="@drawable/bg_gradient_top_50">
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:id="@+id/tv_skip"
|
android:text="跳过"
|
android:textSize="18sp"
|
android:textColor="@color/textColor"
|
android:fontFamily="@font/fly_flower_song"
|
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
android:layout_marginBottom="30dp"
|
app:layout_constraintBottom_toBottomOf="parent"
|
android:padding="10dp"/>
|
<TextView
|
android:layout_width="0dp"
|
android:layout_height="0dp"
|
android:id="@+id/tv_last"
|
app:layout_constraintTop_toTopOf="@id/tv_action"
|
app:layout_constraintBottom_toBottomOf="@id/tv_action"
|
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintEnd_toStartOf="@id/tv_action"
|
android:textColor="@color/deepGreen"
|
android:textSize="16sp"
|
android:layout_marginStart="30dp"
|
android:layout_marginEnd="20dp"
|
app:layout_constraintWidth_percent="0.32"
|
android:gravity="center"
|
android:fontFamily="@font/fly_flower_song"
|
android:background="@drawable/bg_deep_green_line_30"
|
android:text="上一步"/>
|
<TextView
|
android:layout_width="0dp"
|
android:layout_height="wrap_content"
|
android:id="@+id/tv_action"
|
app:layout_constraintBottom_toTopOf="@id/tv_skip"
|
app:layout_constraintStart_toEndOf="@id/tv_last"
|
app:layout_constraintEnd_toEndOf="parent"
|
android:layout_marginEnd="30dp"
|
android:text="选好了,进入下一步"
|
android:gravity="center"
|
android:background="@drawable/bg_mid_green_30"
|
android:textColor="@color/white"
|
android:paddingVertical="12dp"
|
android:fontFamily="@font/fly_flower_song"
|
android:textSize="16sp"
|
android:layout_marginBottom="20dp"/>
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:id="@+id/ll_tag"
|
android:gravity="center"
|
android:orientation="vertical"
|
app:layout_constraintBottom_toTopOf="@id/tv_action"
|
android:layout_marginBottom="30dp"/>
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
app:layout_constraintBottom_toTopOf="@id/ll_tag"
|
android:layout_marginBottom="40dp"
|
android:text="您在这方空间最想\n解决和收获的是哪方面问题"
|
android:gravity="center"
|
app:layout_constraintStart_toStartOf="parent"
|
android:fontFamily="@font/fly_flower_song"
|
app:layout_constraintEnd_toEndOf="parent"
|
android:textColor="@color/darkGreen"
|
app:layout_constraintTop_toTopOf="parent"
|
android:layout_marginTop="30dp"
|
android:textSize="20sp"/>
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
<Space
|
android:id="@+id/spacer"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="60dp"
|
app:layout_constraintTop_toTopOf="@id/cl_bottom"/>
|
</androidx.constraintlayout.widget.ConstraintLayout>
|