2022-11-09 18:27:41 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="94dp"
|
|
|
|
android:layout_marginTop="4dp"
|
|
|
|
android:layout_marginStart="4dp"
|
|
|
|
android:orientation="vertical"
|
|
|
|
app:cardCornerRadius="4dp"
|
|
|
|
app:cardElevation="16dp">
|
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/cover"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:scaleType="centerCrop" />
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/live_type"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_margin="4dp"
|
|
|
|
android:gravity="center" />
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
2022-11-10 13:48:08 +08:00
|
|
|
android:layout_height="35.12dp"
|
2022-11-09 18:27:41 +08:00
|
|
|
android:layout_gravity="bottom"
|
|
|
|
android:background="@mipmap/bg_main_item_bottom" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/name"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="bottom"
|
2022-11-10 13:48:08 +08:00
|
|
|
android:layout_margin="4dp"
|
2022-11-09 18:27:41 +08:00
|
|
|
android:textColor="#FFF6F7FB"
|
2022-11-10 13:48:08 +08:00
|
|
|
android:textSize="11sp" />
|
2022-11-09 18:27:41 +08:00
|
|
|
</FrameLayout>
|
|
|
|
|
|
|
|
</androidx.cardview.widget.CardView>
|