|
@@ -52,36 +52,42 @@
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
|
- <androidx.appcompat.widget.AppCompatImageView
|
|
|
- android:id="@+id/img_cover_gif"
|
|
|
+ <FrameLayout
|
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="139dp"
|
|
|
- android:scaleType="fitXY"
|
|
|
- android:visibility="gone"
|
|
|
- android:adjustViewBounds="true"
|
|
|
- android:src="@drawable/bg_need_error"
|
|
|
- />
|
|
|
-
|
|
|
-
|
|
|
- <com.zswc.creativity.view.AspectRatioImageView
|
|
|
- android:id="@+id/img_cover"
|
|
|
- android:src="@drawable/bg_need_error"
|
|
|
- android:layout_height="139dp"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:scaleType="fitCenter"
|
|
|
- android:layout_gravity="center"
|
|
|
+ android:layout_height="140dp">
|
|
|
+
|
|
|
|
|
|
- />
|
|
|
+ <androidx.appcompat.widget.AppCompatImageView
|
|
|
+ android:id="@+id/img_cover_gif"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:adjustViewBounds="true"
|
|
|
+ android:scaleType="fitXY"
|
|
|
+ android:src="@drawable/bg_need_error"
|
|
|
+ android:visibility="gone" />
|
|
|
|
|
|
-<!-- <com.qmuiteam.qmui.widget.QMUIRadiusImageView-->
|
|
|
-<!-- android:id="@+id/img_cover"-->
|
|
|
-<!-- android:layout_width="match_parent"-->
|
|
|
-<!-- android:layout_height="139dp"-->
|
|
|
-<!-- android:src="@drawable/bg_need_error"-->
|
|
|
-<!-- app:qmui_border_color="@color/translucent"-->
|
|
|
-<!-- app:qmui_corner_radius="12dp"-->
|
|
|
-<!-- android:scaleType="fitXY"-->
|
|
|
-<!-- />-->
|
|
|
+
|
|
|
+ <androidx.appcompat.widget.AppCompatImageView
|
|
|
+ android:id="@+id/img_cover"
|
|
|
+ android:src="@drawable/bg_need_error"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:scaleType="centerInside"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ />
|
|
|
+
|
|
|
+
|
|
|
+ </FrameLayout>
|
|
|
+
|
|
|
+ <!-- <com.qmuiteam.qmui.widget.QMUIRadiusImageView-->
|
|
|
+ <!-- android:id="@+id/img_cover"-->
|
|
|
+ <!-- android:layout_width="match_parent"-->
|
|
|
+ <!-- android:layout_height="139dp"-->
|
|
|
+ <!-- android:src="@drawable/bg_need_error"-->
|
|
|
+ <!-- app:qmui_border_color="@color/translucent"-->
|
|
|
+ <!-- app:qmui_corner_radius="12dp"-->
|
|
|
+ <!-- android:scaleType="fitXY"-->
|
|
|
+ <!-- />-->
|
|
|
|
|
|
|
|
|
<TextView
|
|
@@ -155,26 +161,25 @@
|
|
|
android:id="@+id/ll_lock"
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="match_parent"
|
|
|
- android:visibility="@{item.isBuy==1?View.VISIBLE:View.GONE}"
|
|
|
- android:orientation="vertical"
|
|
|
android:gravity="center"
|
|
|
+ android:orientation="vertical"
|
|
|
+ android:visibility="@{item.isBuy==1?View.VISIBLE:View.GONE}"
|
|
|
app:qmui_backgroundColor="#66000000"
|
|
|
app:qmui_borderColor="@color/translucent"
|
|
|
- app:qmui_radius="12dp"
|
|
|
- >
|
|
|
+ app:qmui_radius="12dp">
|
|
|
|
|
|
<ImageView
|
|
|
- android:src="@drawable/ct_lock"
|
|
|
android:layout_width="26dp"
|
|
|
- android:layout_height="26dp"/>
|
|
|
+ android:layout_height="26dp"
|
|
|
+ android:src="@drawable/ct_lock" />
|
|
|
|
|
|
<TextView
|
|
|
- android:text="用户支付中"
|
|
|
- android:textSize="12sp"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
android:layout_marginTop="@dimen/dp_11"
|
|
|
+ android:text="用户支付中"
|
|
|
android:textColor="@color/white"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"/>
|
|
|
+ android:textSize="12sp" />
|
|
|
|
|
|
</com.qmuiteam.qmui.widget.roundwidget.QMUIRoundLinearLayout>
|
|
|
|