2023-07-28 10:01:41 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="350dp"
|
|
|
|
android:background="@mipmap/bg_fans_group_buy_dialog">
|
|
|
|
|
|
|
|
<androidx.core.widget.NestedScrollView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_marginStart="30dp"
|
|
|
|
android:layout_marginTop="30dp"
|
|
|
|
android:layout_marginEnd="30dp"
|
|
|
|
android:layout_marginBottom="30dp"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:textStyle="bold"
|
|
|
|
android:textColor="#333333"
|
|
|
|
android:textSize="15sp"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/live_fans_group_info_title" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_marginTop="13dp"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/live_fans_group_info_text1" />
|
|
|
|
<TextView
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/live_fans_group_info_text2" />
|
|
|
|
<TextView
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/live_fans_group_info_text3" />
|
|
|
|
<TextView
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/live_fans_group_info_text4" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:textStyle="bold"
|
|
|
|
android:textColor="#333333"
|
|
|
|
android:layout_marginTop="20dp"
|
|
|
|
android:textSize="15sp"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/live_fans_group_info2_title" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_marginTop="13dp"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/live_fans_group_info2_text1" />
|
|
|
|
<TextView
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/live_fans_group_info2_text2" />
|
|
|
|
</LinearLayout>
|
|
|
|
</androidx.core.widget.NestedScrollView>
|
2023-08-02 15:48:51 +08:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/colse"
|
|
|
|
android:layout_width="18dp"
|
|
|
|
android:layout_height="18dp"
|
|
|
|
android:layout_marginTop="12dp"
|
|
|
|
android:layout_marginEnd="12dp"
|
|
|
|
android:src="@mipmap/ic_live_fans_group_info_colse"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"/>
|
2023-07-28 10:01:41 +08:00
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|