|
@@ -0,0 +1,810 @@
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
+<layout 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">
|
|
|
+
|
|
|
+ <data>
|
|
|
+
|
|
|
+ <variable
|
|
|
+ name="vm"
|
|
|
+ type="com.hdl.xl.vmodel.LotsDetailsVModel" />
|
|
|
+
|
|
|
+ <import type="android.view.View" />
|
|
|
+
|
|
|
+ </data>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:id="@+id/ll"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:background="@color/c_bg"
|
|
|
+ android:orientation="vertical">
|
|
|
+
|
|
|
+
|
|
|
+ <FrameLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="0dp"
|
|
|
+ android:layout_weight="1">
|
|
|
+
|
|
|
+
|
|
|
+ <com.hdl.xl.view.MyScrollView
|
|
|
+ android:id="@+id/scroll"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:scrollbars="none">
|
|
|
+
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:orientation="vertical">
|
|
|
+
|
|
|
+
|
|
|
+ <com.qmuiteam.qmui.widget.roundwidget.QMUIRoundLinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="15dp"
|
|
|
+ android:layout_marginTop="22dp"
|
|
|
+ android:layout_marginEnd="15dp"
|
|
|
+ android:orientation="vertical"
|
|
|
+ android:paddingStart="20dp"
|
|
|
+ android:paddingTop="20dp"
|
|
|
+ android:paddingEnd="20dp"
|
|
|
+ android:paddingBottom="23dp"
|
|
|
+ app:qmui_backgroundColor="#B3444444"
|
|
|
+ app:qmui_borderColor="#B3979797"
|
|
|
+ app:qmui_borderWidth="@dimen/dp_1"
|
|
|
+ app:qmui_radius="20sp">
|
|
|
+
|
|
|
+
|
|
|
+ <FrameLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/image_view"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="305dp"
|
|
|
+ android:scaleType="centerCrop"
|
|
|
+ android:src="@drawable/bg_need_error" />
|
|
|
+
|
|
|
+
|
|
|
+ <com.qmuiteam.qmui.widget.roundwidget.QMUIRoundButton
|
|
|
+ android:layout_width="100dp"
|
|
|
+ app:qmui_radius="17dp"
|
|
|
+ android:onClick="@{v->vm.toLookRoster()}"
|
|
|
+ app:qmui_borderColor="@color/translucent"
|
|
|
+ app:qmui_backgroundColor="#66000000"
|
|
|
+ android:textColor="@color/white"
|
|
|
+ android:visibility="@{vm.toShowMing(vm.data.state,vm.data.sell_time)}"
|
|
|
+ android:text="查看中签名单"
|
|
|
+ android:textSize="13sp"
|
|
|
+ android:layout_gravity="bottom|right"
|
|
|
+ android:layout_marginBottom="10dp"
|
|
|
+ android:layout_marginEnd="10dp"
|
|
|
+ android:layout_height="34dp"/>
|
|
|
+
|
|
|
+
|
|
|
+ </FrameLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:layout_marginTop="16dp"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="@{vm.data.name}"
|
|
|
+ android:textColor="@color/white"
|
|
|
+ android:textSize="22sp"
|
|
|
+ android:textStyle="bold" />
|
|
|
+
|
|
|
+ <com.qmuiteam.qmui.widget.roundwidget.QMUIRoundLinearLayout
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ app:qmui_borderWidth="@dimen/dp_1"
|
|
|
+ app:qmui_radius="2dp"
|
|
|
+ app:qmui_borderColor="#999999"
|
|
|
+ android:onClick="@{v->vm.toLookPeople()}"
|
|
|
+ android:paddingStart="7dp"
|
|
|
+ android:paddingEnd="7dp"
|
|
|
+ android:paddingTop="2dp"
|
|
|
+ android:paddingBottom="@dimen/dp_2"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+ <TextView
|
|
|
+ android:text="@{vm.data.all_apply+`人参与`}"
|
|
|
+ android:textSize="12sp"
|
|
|
+ android:textColor="@color/white"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"/>
|
|
|
+
|
|
|
+ </com.qmuiteam.qmui.widget.roundwidget.QMUIRoundLinearLayout>
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center_horizontal"
|
|
|
+ android:layout_marginTop="10dp"
|
|
|
+ >
|
|
|
+
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:background="@drawable/bg_three_but"
|
|
|
+ android:paddingStart="9dp"
|
|
|
+ android:paddingTop="2dp"
|
|
|
+ android:paddingEnd="9dp"
|
|
|
+ android:paddingBottom="2dp"
|
|
|
+ android:text="发售量"
|
|
|
+ android:textColor="#333333"
|
|
|
+ android:textSize="10sp" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginEnd="12dp"
|
|
|
+ android:background="@drawable/bg_kuang_blue"
|
|
|
+ android:hint="100份"
|
|
|
+ android:paddingStart="2dp"
|
|
|
+ android:paddingTop="2dp"
|
|
|
+ android:paddingEnd="2dp"
|
|
|
+ android:paddingBottom="2dp"
|
|
|
+ android:text="@{vm.data.inventory+`份`}"
|
|
|
+ android:textColor="#54D7E9"
|
|
|
+ android:textColorHint="#54D7E9"
|
|
|
+ android:textSize="@dimen/dp_10" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:background="@drawable/bg_three_but"
|
|
|
+ android:paddingStart="2dp"
|
|
|
+ android:paddingTop="2dp"
|
|
|
+ android:paddingEnd="2dp"
|
|
|
+ android:paddingBottom="2dp"
|
|
|
+ android:text="流通量"
|
|
|
+ android:textColor="#333333"
|
|
|
+ android:textSize="10sp" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginEnd="12dp"
|
|
|
+ android:background="@drawable/bg_kuang_blue"
|
|
|
+ android:hint="100份"
|
|
|
+ android:paddingStart="2dp"
|
|
|
+ android:paddingTop="2dp"
|
|
|
+ android:paddingEnd="2dp"
|
|
|
+ android:paddingBottom="2dp"
|
|
|
+ android:text="@{vm.data.now_inventory+`份`}"
|
|
|
+ android:textColor="#54D7E9"
|
|
|
+ android:textColorHint="#54D7E9"
|
|
|
+ android:textSize="@dimen/dp_10" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:background="@drawable/bg_three_but"
|
|
|
+ android:paddingStart="2dp"
|
|
|
+ android:paddingTop="2dp"
|
|
|
+ android:paddingEnd="2dp"
|
|
|
+ android:paddingBottom="2dp"
|
|
|
+ android:text="限购量"
|
|
|
+ android:textColor="#333333"
|
|
|
+ android:textSize="10sp" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:background="@drawable/bg_kuang_blue"
|
|
|
+ android:hint="100份"
|
|
|
+ android:paddingStart="2dp"
|
|
|
+ android:paddingTop="2dp"
|
|
|
+ android:paddingEnd="2dp"
|
|
|
+ android:paddingBottom="2dp"
|
|
|
+ android:text="@{vm.data.buy_count+`份`}"
|
|
|
+ android:textColor="#54D7E9"
|
|
|
+ android:textColorHint="#54D7E9"
|
|
|
+ android:textSize="@dimen/dp_10" />
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <com.qmuiteam.qmui.widget.roundwidget.QMUIRoundLinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_marginTop="20dp"
|
|
|
+ app:qmui_borderColor="@color/white"
|
|
|
+ app:qmui_backgroundColor="#333333"
|
|
|
+ app:qmui_radius="3dp"
|
|
|
+ android:paddingStart="10dp"
|
|
|
+ android:paddingEnd="10dp"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:src="@drawable/ct_jilu"
|
|
|
+ android:layout_width="14dp"
|
|
|
+ android:layout_height="14dp"/>
|
|
|
+ <TextView
|
|
|
+ android:text="@{`报名:`+vm.data.apply_st+`至`+vm.data.apply_end}"
|
|
|
+ android:textSize="10sp"
|
|
|
+ android:layout_marginStart="5dp"
|
|
|
+ android:textColor="@color/white"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"/>
|
|
|
+
|
|
|
+
|
|
|
+ </com.qmuiteam.qmui.widget.roundwidget.QMUIRoundLinearLayout>
|
|
|
+
|
|
|
+
|
|
|
+ </com.qmuiteam.qmui.widget.roundwidget.QMUIRoundLinearLayout>
|
|
|
+
|
|
|
+
|
|
|
+ <com.qmuiteam.qmui.widget.roundwidget.QMUIRoundLinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="15dp"
|
|
|
+ android:layout_marginTop="12dp"
|
|
|
+ android:layout_marginEnd="15dp"
|
|
|
+ android:orientation="vertical"
|
|
|
+ android:paddingStart="10dp"
|
|
|
+ android:paddingTop="10dp"
|
|
|
+ android:paddingEnd="10dp"
|
|
|
+ android:paddingBottom="15dp"
|
|
|
+ app:qmui_backgroundColor="#141414"
|
|
|
+ app:qmui_borderColor="#141414"
|
|
|
+ app:qmui_borderWidth="@dimen/dp_1"
|
|
|
+ app:qmui_radius="16sp">
|
|
|
+
|
|
|
+ <androidx.constraintlayout.widget.ConstraintLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="17dp"
|
|
|
+ android:text="认证信息"
|
|
|
+ android:textColor="@color/white"
|
|
|
+ android:textSize="18sp"
|
|
|
+ android:textStyle="bold"
|
|
|
+ app:layout_constraintLeft_toLeftOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent" />
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/img_tag"
|
|
|
+ android:layout_width="22dp"
|
|
|
+ android:layout_height="23dp"
|
|
|
+ android:src="@drawable/ct_tags"
|
|
|
+ app:layout_constraintLeft_toLeftOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent" />
|
|
|
+
|
|
|
+
|
|
|
+ </androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
+
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="16dp"
|
|
|
+ android:gravity="center_vertical"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="区块链"
|
|
|
+ android:textColor="#999999"
|
|
|
+ android:textSize="13sp" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:gravity="right"
|
|
|
+ android:text="@{vm.linkName}"
|
|
|
+ android:textColor="@color/white"
|
|
|
+ android:textSize="12sp" />
|
|
|
+
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="14dp"
|
|
|
+ android:gravity="center_vertical"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:visibility="gone"
|
|
|
+ tools:visibility="visible">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="合约地址"
|
|
|
+ android:textColor="#999999"
|
|
|
+ android:textSize="12sp" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="12dp"
|
|
|
+ android:layout_marginEnd="6dp"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:gravity="right"
|
|
|
+ android:text="@{vm.link}"
|
|
|
+ android:textColor="@color/white"
|
|
|
+ android:textSize="13sp" />
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:layout_width="17dp"
|
|
|
+ android:layout_height="17dp"
|
|
|
+ android:onClick="@{v->vm.toCopy()}"
|
|
|
+ android:src="@drawable/ct_copy" />
|
|
|
+
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+
|
|
|
+ </com.qmuiteam.qmui.widget.roundwidget.QMUIRoundLinearLayout>
|
|
|
+
|
|
|
+
|
|
|
+ <com.qmuiteam.qmui.widget.roundwidget.QMUIRoundLinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="15dp"
|
|
|
+ android:layout_marginTop="12dp"
|
|
|
+ android:layout_marginEnd="15dp"
|
|
|
+ android:orientation="vertical"
|
|
|
+ android:paddingStart="10dp"
|
|
|
+ android:paddingTop="10dp"
|
|
|
+ android:paddingEnd="10dp"
|
|
|
+ android:paddingBottom="12dp"
|
|
|
+ app:qmui_backgroundColor="#141414"
|
|
|
+ app:qmui_borderColor="#141414"
|
|
|
+ app:qmui_borderWidth="@dimen/dp_1"
|
|
|
+ app:qmui_radius="16sp">
|
|
|
+
|
|
|
+ <androidx.constraintlayout.widget.ConstraintLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="17dp"
|
|
|
+ android:text="藏品详情"
|
|
|
+ android:textColor="@color/white"
|
|
|
+ android:textSize="18sp"
|
|
|
+ android:textStyle="bold"
|
|
|
+ app:layout_constraintLeft_toLeftOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent" />
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:layout_width="22dp"
|
|
|
+ android:layout_height="23dp"
|
|
|
+ android:src="@drawable/ct_tags"
|
|
|
+ app:layout_constraintLeft_toLeftOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent" />
|
|
|
+
|
|
|
+
|
|
|
+ </androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
+
|
|
|
+ <androidx.appcompat.widget.AppCompatImageView
|
|
|
+ android:id="@+id/img_deatils"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="14dp"
|
|
|
+ android:adjustViewBounds="true"
|
|
|
+ android:scaleType="fitXY"
|
|
|
+ android:src="@drawable/bg_need_error" />
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="15dp"
|
|
|
+ android:gravity="center_vertical"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="发行方"
|
|
|
+ android:textColor="#999999"
|
|
|
+ android:textSize="13sp" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginEnd="14dp"
|
|
|
+ android:gravity="right"
|
|
|
+ android:text="@{vm.data.auth_name}"
|
|
|
+ android:textColor="@color/white"
|
|
|
+ android:textSize="13sp" />
|
|
|
+
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="14dp"
|
|
|
+ android:gravity="center_vertical"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="发行时间"
|
|
|
+ android:textColor="#999999"
|
|
|
+ android:textSize="13sp" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginEnd="14dp"
|
|
|
+ android:gravity="right"
|
|
|
+ android:text="@{vm.data.sell_time}"
|
|
|
+ android:textColor="@color/white"
|
|
|
+ android:textSize="13sp" />
|
|
|
+
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+
|
|
|
+ </com.qmuiteam.qmui.widget.roundwidget.QMUIRoundLinearLayout>
|
|
|
+
|
|
|
+
|
|
|
+ <com.qmuiteam.qmui.widget.roundwidget.QMUIRoundLinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="15dp"
|
|
|
+ android:layout_marginTop="12dp"
|
|
|
+ android:layout_marginEnd="15dp"
|
|
|
+ android:orientation="vertical"
|
|
|
+ android:paddingStart="10dp"
|
|
|
+ android:paddingTop="10dp"
|
|
|
+ android:paddingEnd="10dp"
|
|
|
+ android:paddingBottom="9dp"
|
|
|
+ app:qmui_backgroundColor="#141414"
|
|
|
+ app:qmui_borderColor="#141414"
|
|
|
+ app:qmui_borderWidth="@dimen/dp_1"
|
|
|
+ app:qmui_radius="16sp">
|
|
|
+
|
|
|
+ <androidx.constraintlayout.widget.ConstraintLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="17dp"
|
|
|
+ android:text="权益说明"
|
|
|
+ android:textColor="@color/white"
|
|
|
+ android:textSize="18sp"
|
|
|
+ android:textStyle="bold"
|
|
|
+ app:layout_constraintLeft_toLeftOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent" />
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:layout_width="22dp"
|
|
|
+ android:layout_height="23dp"
|
|
|
+ android:src="@drawable/ct_tags"
|
|
|
+ app:layout_constraintLeft_toLeftOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent" />
|
|
|
+
|
|
|
+
|
|
|
+ </androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="6dp"
|
|
|
+ android:text="@{vm.data.instructions}"
|
|
|
+ android:textColor="#B5B5B5"
|
|
|
+ android:textSize="11sp" />
|
|
|
+
|
|
|
+
|
|
|
+ </com.qmuiteam.qmui.widget.roundwidget.QMUIRoundLinearLayout>
|
|
|
+
|
|
|
+
|
|
|
+ <com.qmuiteam.qmui.widget.roundwidget.QMUIRoundLinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="15dp"
|
|
|
+ android:layout_marginTop="12dp"
|
|
|
+ android:layout_marginEnd="15dp"
|
|
|
+ android:orientation="vertical"
|
|
|
+ android:paddingStart="10dp"
|
|
|
+ android:paddingTop="10dp"
|
|
|
+ android:paddingEnd="10dp"
|
|
|
+ android:paddingBottom="9dp"
|
|
|
+ app:qmui_backgroundColor="#141414"
|
|
|
+ app:qmui_borderColor="#141414"
|
|
|
+ app:qmui_borderWidth="@dimen/dp_1"
|
|
|
+ app:qmui_radius="16sp">
|
|
|
+
|
|
|
+ <androidx.constraintlayout.widget.ConstraintLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="17dp"
|
|
|
+ android:text="购买须知"
|
|
|
+ android:textColor="@color/white"
|
|
|
+ android:textSize="18sp"
|
|
|
+ android:textStyle="bold"
|
|
|
+ app:layout_constraintLeft_toLeftOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent" />
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:layout_width="22dp"
|
|
|
+ android:layout_height="23dp"
|
|
|
+ android:src="@drawable/ct_tags"
|
|
|
+ app:layout_constraintLeft_toLeftOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent" />
|
|
|
+
|
|
|
+
|
|
|
+ </androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="6dp"
|
|
|
+ android:text="@{vm.data.buy_notice}"
|
|
|
+ android:textColor="#B5B5B5"
|
|
|
+ android:textSize="11sp" />
|
|
|
+
|
|
|
+
|
|
|
+ </com.qmuiteam.qmui.widget.roundwidget.QMUIRoundLinearLayout>
|
|
|
+
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ </com.hdl.xl.view.MyScrollView>
|
|
|
+ <!-- 滑动时候显示的 -->
|
|
|
+
|
|
|
+ <com.qmuiteam.qmui.widget.roundwidget.QMUIRoundLinearLayout
|
|
|
+ android:id="@+id/qmll_one"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_marginStart="15dp"
|
|
|
+ android:layout_marginEnd="15dp"
|
|
|
+ android:gravity="center"
|
|
|
+ android:visibility="@{vm.isShowStart(vm.data.state,vm.data.sell_time)}"
|
|
|
+ app:qmui_backgroundColor="#4D000000"
|
|
|
+ app:qmui_borderColor="#979797"
|
|
|
+ app:qmui_borderWidth="@dimen/dp_1"
|
|
|
+ app:qmui_radius="22dp"
|
|
|
+ android:layout_height="44dp">
|
|
|
+ <TextView
|
|
|
+ android:text="中签公布时间:"
|
|
|
+ android:textColor="@color/white"
|
|
|
+ android:textSize="16sp"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"/>
|
|
|
+ <TextView
|
|
|
+ android:text="@{vm.data.sell_time}"
|
|
|
+ android:textColor="#39C0FB"
|
|
|
+ android:textSize="16sp"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"/>
|
|
|
+
|
|
|
+ </com.qmuiteam.qmui.widget.roundwidget.QMUIRoundLinearLayout>
|
|
|
+
|
|
|
+ <com.qmuiteam.qmui.widget.roundwidget.QMUIRoundLinearLayout
|
|
|
+ android:id="@+id/qmll_two"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_marginStart="15dp"
|
|
|
+ android:layout_marginEnd="15dp"
|
|
|
+
|
|
|
+ android:visibility="@{vm.data.ballot_status==2?View.VISIBLE:View.GONE}"
|
|
|
+
|
|
|
+ android:gravity="center"
|
|
|
+ app:qmui_backgroundColor="#4D000000"
|
|
|
+ app:qmui_borderColor="#979797"
|
|
|
+ app:qmui_borderWidth="@dimen/dp_1"
|
|
|
+ app:qmui_radius="22dp"
|
|
|
+ android:layout_height="44dp">
|
|
|
+ <TextView
|
|
|
+ android:text="未中签"
|
|
|
+ android:textColor="#999999"
|
|
|
+ android:textSize="16sp"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"/>
|
|
|
+
|
|
|
+
|
|
|
+ </com.qmuiteam.qmui.widget.roundwidget.QMUIRoundLinearLayout>
|
|
|
+
|
|
|
+ <com.qmuiteam.qmui.widget.roundwidget.QMUIRoundLinearLayout
|
|
|
+ android:id="@+id/qmll_three"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_marginStart="15dp"
|
|
|
+ android:layout_marginEnd="15dp"
|
|
|
+ android:gravity="center"
|
|
|
+ android:visibility="@{vm.data.ballot_status==1?View.VISIBLE:View.GONE}"
|
|
|
+ app:qmui_backgroundColor="#4D000000"
|
|
|
+ app:qmui_borderColor="#979797"
|
|
|
+ app:qmui_borderWidth="@dimen/dp_1"
|
|
|
+ app:qmui_radius="22dp"
|
|
|
+ android:layout_height="44dp">
|
|
|
+ <TextView
|
|
|
+ android:text="恭喜!您已中签"
|
|
|
+ android:textColor="#999999"
|
|
|
+ android:textSize="16sp"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"/>
|
|
|
+
|
|
|
+
|
|
|
+ </com.qmuiteam.qmui.widget.roundwidget.QMUIRoundLinearLayout>
|
|
|
+
|
|
|
+ <com.qmuiteam.qmui.widget.roundwidget.QMUIRoundLinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_marginStart="15dp"
|
|
|
+ android:layout_marginEnd="15dp"
|
|
|
+
|
|
|
+ android:gravity="center"
|
|
|
+ android:visibility="@{vm.isShowNo(vm.data.state,vm.data.ballot_status,vm.data.sell_time)}"
|
|
|
+ app:qmui_backgroundColor="#4D000000"
|
|
|
+ app:qmui_borderColor="#979797"
|
|
|
+ app:qmui_borderWidth="@dimen/dp_1"
|
|
|
+ app:qmui_radius="22dp"
|
|
|
+ android:layout_height="44dp">
|
|
|
+ <TextView
|
|
|
+ android:text="未参与抽签"
|
|
|
+ android:textColor="#999999"
|
|
|
+ android:textSize="16sp"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"/>
|
|
|
+
|
|
|
+
|
|
|
+ </com.qmuiteam.qmui.widget.roundwidget.QMUIRoundLinearLayout>
|
|
|
+
|
|
|
+
|
|
|
+ </FrameLayout>
|
|
|
+
|
|
|
+
|
|
|
+ <!-- 参与成功-->
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="81dp"
|
|
|
+ android:visibility="@{vm.isHasApply(vm.data.has_apply,vm.data.sell_time)}"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ >
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="14dp"
|
|
|
+ android:layout_marginStart="16dp"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:text="@{`¥`+vm.data.price}"
|
|
|
+ android:textColor="@color/white"
|
|
|
+ android:textSize="30sp" />
|
|
|
+
|
|
|
+
|
|
|
+ <com.qmuiteam.qmui.widget.roundwidget.QMUIRoundButton
|
|
|
+ android:layout_width="180dp"
|
|
|
+ android:layout_height="40dp"
|
|
|
+ android:layout_marginStart="25dp"
|
|
|
+ android:layout_marginEnd="25dp"
|
|
|
+ android:layout_marginTop="6dp"
|
|
|
+ android:text="参与成功"
|
|
|
+ android:textColor="@color/white"
|
|
|
+ android:textSize="16sp"
|
|
|
+ app:qmui_backgroundColor="#666666"
|
|
|
+ app:qmui_borderColor="@color/translucent"
|
|
|
+ app:qmui_radius="14dp" />
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <!-- 已结束-->
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="81dp"
|
|
|
+ android:visibility="@{vm.isShowEnd(vm.data.state,vm.data.sell_time)}"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ >
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="14dp"
|
|
|
+ android:layout_marginStart="16dp"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:text="@{`¥`+vm.data.price}"
|
|
|
+ android:textColor="@color/white"
|
|
|
+ android:textSize="30sp" />
|
|
|
+
|
|
|
+
|
|
|
+ <com.qmuiteam.qmui.widget.roundwidget.QMUIRoundButton
|
|
|
+ android:layout_width="180dp"
|
|
|
+ android:layout_height="40dp"
|
|
|
+ android:layout_marginStart="25dp"
|
|
|
+ android:layout_marginEnd="25dp"
|
|
|
+ android:layout_marginTop="6dp"
|
|
|
+ android:text="已结束"
|
|
|
+ android:textColor="@color/white"
|
|
|
+ android:textSize="16sp"
|
|
|
+ app:qmui_backgroundColor="#666666"
|
|
|
+ app:qmui_borderColor="@color/translucent"
|
|
|
+ app:qmui_radius="14dp" />
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <!-- 立即参与-->
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="81dp"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:visibility="@{vm.isShowIng(vm.data.state,vm.data.sell_time,vm.data.has_apply)}"
|
|
|
+ tools:visibility="visible">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="14dp"
|
|
|
+ android:layout_marginStart="16dp"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:text="@{`¥`+vm.data.price}"
|
|
|
+ android:textColor="@color/white"
|
|
|
+ android:textSize="30sp" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/but_buy"
|
|
|
+ android:layout_width="180dp"
|
|
|
+ android:layout_height="40dp"
|
|
|
+ android:layout_marginTop="6dp"
|
|
|
+ android:layout_marginEnd="25dp"
|
|
|
+ android:background="@drawable/bg_logo_but"
|
|
|
+ android:gravity="center"
|
|
|
+ android:text="去支付"
|
|
|
+ android:textColor="#000000"
|
|
|
+ android:textSize="16sp" />
|
|
|
+
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <!-- 未开始-->
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="81dp"
|
|
|
+ android:visibility="@{vm.isShowStart(vm.data.state,vm.data.sell_time)}"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ >
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="14dp"
|
|
|
+ android:layout_marginStart="16dp"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:text="@{`¥`+vm.data.price}"
|
|
|
+ android:textColor="@color/white"
|
|
|
+ android:textSize="30sp" />
|
|
|
+
|
|
|
+
|
|
|
+ <com.qmuiteam.qmui.widget.roundwidget.QMUIRoundButton
|
|
|
+ android:layout_width="180dp"
|
|
|
+ android:layout_height="40dp"
|
|
|
+ android:layout_marginStart="25dp"
|
|
|
+ android:layout_marginEnd="25dp"
|
|
|
+ android:layout_marginTop="6dp"
|
|
|
+ android:text="未开始"
|
|
|
+ android:textColor="@color/white"
|
|
|
+ android:textSize="16sp"
|
|
|
+ app:qmui_backgroundColor="#666666"
|
|
|
+ app:qmui_borderColor="@color/translucent"
|
|
|
+ app:qmui_radius="14dp" />
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+</layout>
|