|
@@ -0,0 +1,458 @@
|
|
|
+<?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">
|
|
|
+
|
|
|
+ <data>
|
|
|
+
|
|
|
+ <variable
|
|
|
+ name="vm"
|
|
|
+ type="com.zswc.creativity.vmodel.TibetanDetailsVModel" />
|
|
|
+
|
|
|
+ </data>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:background="@color/white"
|
|
|
+ android:orientation="vertical">
|
|
|
+
|
|
|
+ <androidx.core.widget.NestedScrollView
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="0dp"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:scrollbars="none">
|
|
|
+
|
|
|
+
|
|
|
+ <FrameLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent">
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/image_gif_view"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="360dp"
|
|
|
+ android:scaleType="centerCrop"
|
|
|
+ />
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/image_view"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="360dp"
|
|
|
+ android:scaleType="centerCrop"
|
|
|
+ app:url="@{vm.data.detail_img}"
|
|
|
+ android:src="@drawable/bg_need_error" />
|
|
|
+
|
|
|
+ <com.qmuiteam.qmui.widget.roundwidget.QMUIRoundLinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="336dp"
|
|
|
+ android:orientation="vertical"
|
|
|
+ app:qmui_backgroundColor="@color/white"
|
|
|
+ app:qmui_borderColor="@color/translucent"
|
|
|
+ app:qmui_radius="16dp">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center_horizontal"
|
|
|
+ android:layout_marginTop="8dp"
|
|
|
+ android:text="@{vm.data.name}"
|
|
|
+ android:textColor="#141414"
|
|
|
+ android:textSize="22sp"
|
|
|
+ android:textStyle="bold" />
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center_horizontal"
|
|
|
+ android:layout_marginTop="5dp">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:background="#38D3D3"
|
|
|
+ android:hint="限量"
|
|
|
+ android:paddingStart="9dp"
|
|
|
+ android:paddingTop="2dp"
|
|
|
+ android:paddingEnd="9dp"
|
|
|
+ android:textSize="@dimen/dp_11"
|
|
|
+ android:paddingBottom="2dp" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:background="@drawable/bg_kuang_blue"
|
|
|
+ android:hint="100份"
|
|
|
+ android:text="@{vm.data.inventory+`份`}"
|
|
|
+ android:paddingStart="9dp"
|
|
|
+ android:paddingTop="2dp"
|
|
|
+ android:paddingEnd="9dp"
|
|
|
+ android:textSize="@dimen/dp_11"
|
|
|
+ android:paddingBottom="2dp"
|
|
|
+ android:textColor="#54D7E9"
|
|
|
+ android:textColorHint="#54D7E9" />
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="15dp"
|
|
|
+ android:layout_marginTop="11dp"
|
|
|
+ android:gravity="center_vertical"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:layout_width="4dp"
|
|
|
+ android:layout_height="14dp"
|
|
|
+ android:background="@drawable/bg_chose_line" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="4dp"
|
|
|
+ android:text="认证信息"
|
|
|
+ android:textColor="#222222"
|
|
|
+ android:textSize="16sp"
|
|
|
+ android:textStyle="bold" />
|
|
|
+
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="15dp"
|
|
|
+ android:layout_marginTop="8dp"
|
|
|
+ android:gravity="center_vertical"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="区块链"
|
|
|
+ android:textColor="#333333"
|
|
|
+ android:textSize="12sp" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginEnd="14dp"
|
|
|
+ android:gravity="right"
|
|
|
+ android:text="蚂蚁链LASH"
|
|
|
+ android:textColor="#333333"
|
|
|
+ android:textSize="12sp" />
|
|
|
+
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="15dp"
|
|
|
+ android:layout_marginTop="8dp"
|
|
|
+ android:gravity="center_vertical"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="合约地址"
|
|
|
+ android:textColor="#333333"
|
|
|
+ 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="蚂蚁链LASH"
|
|
|
+ android:textColor="#333333"
|
|
|
+ android:textSize="12sp" />
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:layout_width="17dp"
|
|
|
+ android:layout_height="17dp"
|
|
|
+ android:layout_marginEnd="14dp"
|
|
|
+ android:src="@drawable/ct_copy" />
|
|
|
+
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="15dp"
|
|
|
+ android:layout_marginTop="11dp"
|
|
|
+ android:gravity="center_vertical"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:layout_width="4dp"
|
|
|
+ android:layout_height="14dp"
|
|
|
+ android:background="@drawable/bg_chose_line" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="4dp"
|
|
|
+ android:text="藏品描述"
|
|
|
+ android:textColor="#222222"
|
|
|
+ android:textSize="16sp"
|
|
|
+ android:textStyle="bold" />
|
|
|
+
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <com.qmuiteam.qmui.widget.QMUIRadiusImageView
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="15dp"
|
|
|
+ android:layout_marginTop="10dp"
|
|
|
+ android:layout_marginEnd="15dp"
|
|
|
+ app:qmui_border_color="@color/translucent"
|
|
|
+ app:url="@{vm.data.describe[0]}"
|
|
|
+ android:src="@drawable/bg_need_error" />
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="15dp"
|
|
|
+ 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="#333333"
|
|
|
+ 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.issuer}"
|
|
|
+ android:textColor="#333333"
|
|
|
+ android:textSize="13sp" />
|
|
|
+
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="15dp"
|
|
|
+ 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="#333333"
|
|
|
+ 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="#333333"
|
|
|
+ android:textSize="13sp" />
|
|
|
+
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+ <com.qmuiteam.qmui.widget.roundwidget.QMUIRoundLinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ app:qmui_borderColor="@color/translucent"
|
|
|
+ app:qmui_backgroundColor="#F1F9F9"
|
|
|
+ android:paddingEnd="10dp"
|
|
|
+ android:paddingStart="10dp"
|
|
|
+ android:paddingTop="10dp"
|
|
|
+ android:paddingBottom="6dp"
|
|
|
+ android:orientation="vertical"
|
|
|
+ app:qmui_radius="8dp"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:gravity="center_vertical"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:layout_width="4dp"
|
|
|
+ android:layout_height="14dp"
|
|
|
+ android:background="@drawable/bg_chose_line" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="4dp"
|
|
|
+ android:text="藏品简介"
|
|
|
+ android:textColor="#222222"
|
|
|
+ android:textSize="16sp"
|
|
|
+ android:textStyle="bold" />
|
|
|
+
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+ <TextView
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_marginTop="6dp"
|
|
|
+ android:textSize="11sp"
|
|
|
+ android:textColor="#B5B5B5"
|
|
|
+ android:text="@{vm.data.instructions}"
|
|
|
+ android:layout_height="wrap_content"/>
|
|
|
+
|
|
|
+
|
|
|
+ </com.qmuiteam.qmui.widget.roundwidget.QMUIRoundLinearLayout>
|
|
|
+
|
|
|
+
|
|
|
+ <com.qmuiteam.qmui.widget.roundwidget.QMUIRoundLinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ app:qmui_borderColor="@color/translucent"
|
|
|
+ app:qmui_backgroundColor="#F1F9F9"
|
|
|
+ android:layout_marginTop="16dp"
|
|
|
+ android:paddingEnd="10dp"
|
|
|
+ android:paddingStart="10dp"
|
|
|
+ android:paddingTop="10dp"
|
|
|
+ android:paddingBottom="6dp"
|
|
|
+ android:orientation="vertical"
|
|
|
+ app:qmui_radius="8dp"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:gravity="center_vertical"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:layout_width="4dp"
|
|
|
+ android:layout_height="14dp"
|
|
|
+ android:background="@drawable/bg_chose_line" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="4dp"
|
|
|
+ android:text="购买须知"
|
|
|
+ android:textColor="#222222"
|
|
|
+ android:textSize="16sp"
|
|
|
+ android:textStyle="bold" />
|
|
|
+
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+ <TextView
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_marginTop="6dp"
|
|
|
+ android:textSize="11sp"
|
|
|
+ android:textColor="#B5B5B5"
|
|
|
+ android:text="@{vm.data.buy_notice}"
|
|
|
+ android:layout_height="wrap_content"/>
|
|
|
+
|
|
|
+
|
|
|
+ </com.qmuiteam.qmui.widget.roundwidget.QMUIRoundLinearLayout>
|
|
|
+
|
|
|
+
|
|
|
+ <com.qmuiteam.qmui.widget.roundwidget.QMUIRoundLinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ app:qmui_borderColor="@color/translucent"
|
|
|
+ app:qmui_backgroundColor="#F1F9F9"
|
|
|
+ android:layout_marginTop="16dp"
|
|
|
+ android:paddingEnd="10dp"
|
|
|
+ android:paddingStart="10dp"
|
|
|
+ android:paddingTop="10dp"
|
|
|
+ android:paddingBottom="6dp"
|
|
|
+ android:orientation="vertical"
|
|
|
+ app:qmui_radius="8dp"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:gravity="center_vertical"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:layout_width="4dp"
|
|
|
+ android:layout_height="14dp"
|
|
|
+ android:background="@drawable/bg_chose_line" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="4dp"
|
|
|
+ android:text="温馨提示"
|
|
|
+ android:textColor="#222222"
|
|
|
+ android:textSize="16sp"
|
|
|
+ android:textStyle="bold" />
|
|
|
+
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+ <TextView
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_marginTop="6dp"
|
|
|
+ android:textSize="11sp"
|
|
|
+ android:textColor="#B5B5B5"
|
|
|
+ android:text="@{vm.data.warm_prompt}"
|
|
|
+
|
|
|
+ android:layout_height="wrap_content"/>
|
|
|
+
|
|
|
+
|
|
|
+ </com.qmuiteam.qmui.widget.roundwidget.QMUIRoundLinearLayout>
|
|
|
+
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="@dimen/dp_20"/>
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ </com.qmuiteam.qmui.widget.roundwidget.QMUIRoundLinearLayout>
|
|
|
+
|
|
|
+
|
|
|
+ </FrameLayout>
|
|
|
+
|
|
|
+ </androidx.core.widget.NestedScrollView>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:layout_height="83dp">
|
|
|
+ <TextView
|
|
|
+ android:text="¥79.9"
|
|
|
+ android:textColor="@color/text_title"
|
|
|
+ android:textSize="30sp"
|
|
|
+ android:layout_marginStart="16dp"
|
|
|
+ android:layout_gravity="center_vertical"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:layout_height="wrap_content"/>
|
|
|
+
|
|
|
+ <com.qmuiteam.qmui.widget.roundwidget.QMUIRoundButton
|
|
|
+ android:layout_width="180dp"
|
|
|
+ android:layout_height="40dp"
|
|
|
+ app:qmui_radius="4dp"
|
|
|
+ app:qmui_backgroundColor="#C2C2C2"
|
|
|
+ app:qmui_borderColor="@color/translucent"
|
|
|
+ android:layout_marginTop="8dp"
|
|
|
+ android:text="已售罄"
|
|
|
+ android:textSize="16sp"
|
|
|
+ android:textColor="@color/white"
|
|
|
+ android:layout_marginEnd="25dp"
|
|
|
+ />
|
|
|
+
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+</layout>
|