<?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_heye">
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
app:layout_constraintBottom_toBottomOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
android:padding="10dp"
|
android:textColor="@color/textColor"
|
android:textSize="19sp"
|
android:text="跳过"
|
android:id="@+id/tv_skip"
|
android:fontFamily="@font/fly_flower_song"
|
android:layout_marginBottom="50dp"/>
|
<RadioGroup
|
android:id="@+id/rg_qa"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:orientation="vertical"
|
app:layout_constraintBottom_toTopOf="@id/tv_skip"
|
android:layout_marginHorizontal="40dp"
|
android:background="@drawable/bg_gradient_50">
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="星/星/知/我/心"
|
android:fontFamily="@font/fly_flower_song"
|
android:textColor="@color/textColor99"
|
android:textSize="16sp"
|
android:layout_marginTop="50dp"
|
android:layout_gravity="center"/>
|
<TextView
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:id="@+id/tv_q"
|
android:layout_marginTop="12dp"
|
android:textSize="24sp"
|
android:textColor="@color/deepGreen"
|
android:fontFamily="@font/fly_flower_song"
|
android:gravity="center"
|
android:text="您是否内心纠结敏感多疑"/>
|
<RadioButton
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:id="@+id/rb_yes"
|
android:text="是"
|
android:button="@null"
|
android:textSize="18sp"
|
android:gravity="center"
|
android:paddingVertical="14dp"
|
android:fontFamily="@font/fly_flower_song"
|
android:textColor="@color/selector_green_white"
|
android:layout_marginHorizontal="35dp"
|
android:layout_marginTop="38dp"
|
android:background="@drawable/selector_rb_qa"/>
|
<RadioButton
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:id="@+id/rb_no"
|
android:text="否"
|
android:button="@null"
|
android:fontFamily="@font/fly_flower_song"
|
android:textSize="18sp"
|
android:gravity="center"
|
android:paddingVertical="14dp"
|
android:textColor="@color/selector_green_white"
|
android:layout_marginHorizontal="35dp"
|
android:layout_marginTop="20dp"
|
android:background="@drawable/selector_rb_qa"/>
|
<RadioButton
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:id="@+id/rb_maybe"
|
android:text="偶尔有"
|
android:fontFamily="@font/fly_flower_song"
|
android:button="@null"
|
android:textSize="18sp"
|
android:gravity="center"
|
android:layout_marginBottom="50dp"
|
android:paddingVertical="14dp"
|
android:textColor="@color/selector_green_white"
|
android:layout_marginHorizontal="35dp"
|
android:layout_marginTop="20dp"
|
android:background="@drawable/selector_rb_qa"/>
|
</RadioGroup>
|
<View
|
android:id="@+id/mask"
|
android:layout_width="0dp"
|
android:layout_height="0dp"
|
android:fontFamily="@font/fly_flower_song"
|
app:layout_constraintTop_toTopOf="@id/rg_qa"
|
app:layout_constraintBottom_toBottomOf="@id/rg_qa"
|
app:layout_constraintStart_toStartOf="@id/rg_qa"
|
app:layout_constraintEnd_toEndOf="@id/rg_qa"
|
android:visibility="gone"/>
|
</androidx.constraintlayout.widget.ConstraintLayout>
|