<?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"
|
android:background="@color/colorPrimary"
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="48dp"
|
android:background="@color/colorPrimary"
|
app:layout_constraintBottom_toBottomOf="parent"
|
android:id="@+id/bg_action"/>
|
<TextView
|
android:id="@+id/tv_action"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintTop_toTopOf="@id/bg_action"
|
app:layout_constraintBottom_toBottomOf="@id/bg_action"
|
android:text="加入年度会员"
|
android:textColor="@color/white"
|
android:textSize="18sp"
|
android:drawablePadding="11dp"
|
android:textStyle="bold"
|
android:drawableStart="@mipmap/add"/>
|
<ScrollView
|
android:layout_width="match_parent"
|
android:layout_height="0dp"
|
app:layout_constraintTop_toTopOf="parent"
|
app:layout_constraintBottom_toTopOf="@id/bg_action">
|
<androidx.constraintlayout.widget.ConstraintLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content">
|
<ImageView
|
android:layout_width="match_parent"
|
android:layout_height="0dp"
|
app:layout_constraintTop_toTopOf="parent"
|
android:id="@+id/iv_img"/>
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
</ScrollView>
|
</androidx.constraintlayout.widget.ConstraintLayout>
|