2025-12-16 15:47:36 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2025-12-30 19:20:52 +08:00
|
|
|
<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
|
2025-12-16 15:47:36 +08:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2025-12-30 19:20:52 +08:00
|
|
|
android:layout_margin="4dp"
|
|
|
|
|
app:cardCornerRadius="8dp"
|
|
|
|
|
app:cardElevation="2dp">
|
2025-12-16 15:47:36 +08:00
|
|
|
|
2025-12-30 19:20:52 +08:00
|
|
|
<FrameLayout
|
2025-12-16 15:47:36 +08:00
|
|
|
android:layout_width="match_parent"
|
2025-12-17 15:38:00 +08:00
|
|
|
android:layout_height="wrap_content">
|
2025-12-16 15:47:36 +08:00
|
|
|
|
2025-12-17 15:38:00 +08:00
|
|
|
<ImageView
|
|
|
|
|
android:id="@+id/coverImage"
|
2025-12-30 19:20:52 +08:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="120dp"
|
|
|
|
|
android:scaleType="centerCrop" />
|
2025-12-16 15:47:36 +08:00
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/liveBadge"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
2025-12-30 19:20:52 +08:00
|
|
|
android:layout_gravity="top|end"
|
|
|
|
|
android:layout_margin="8dp"
|
|
|
|
|
android:background="@android:color/holo_red_light"
|
|
|
|
|
android:paddingHorizontal="6dp"
|
|
|
|
|
android:paddingVertical="2dp"
|
|
|
|
|
android:text="直播中"
|
2025-12-16 15:47:36 +08:00
|
|
|
android:textColor="@android:color/white"
|
2025-12-30 19:20:52 +08:00
|
|
|
android:textSize="10sp"
|
|
|
|
|
android:visibility="gone" />
|
2025-12-16 15:47:36 +08:00
|
|
|
|
2025-12-30 19:20:52 +08:00
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="match_parent"
|
2025-12-16 15:47:36 +08:00
|
|
|
android:layout_height="wrap_content"
|
2025-12-30 19:20:52 +08:00
|
|
|
android:layout_gravity="bottom"
|
|
|
|
|
android:background="#80000000"
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:padding="8dp">
|
2025-12-17 15:38:00 +08:00
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/roomTitle"
|
2025-12-30 19:20:52 +08:00
|
|
|
android:layout_width="match_parent"
|
2025-12-17 15:38:00 +08:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:ellipsize="end"
|
|
|
|
|
android:maxLines="1"
|
2025-12-30 19:20:52 +08:00
|
|
|
android:textColor="@android:color/white"
|
|
|
|
|
android:textSize="14sp" />
|
2025-12-17 15:38:00 +08:00
|
|
|
|
2025-12-30 19:20:52 +08:00
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="match_parent"
|
2025-12-17 15:38:00 +08:00
|
|
|
android:layout_height="wrap_content"
|
2025-12-30 19:20:52 +08:00
|
|
|
android:orientation="horizontal">
|
2025-12-17 15:38:00 +08:00
|
|
|
|
2025-12-30 19:20:52 +08:00
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/streamerName"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_weight="1"
|
|
|
|
|
android:textColor="#CCC"
|
|
|
|
|
android:textSize="12sp" />
|
2025-12-16 15:47:36 +08:00
|
|
|
|
2025-12-30 19:20:52 +08:00
|
|
|
<ImageView
|
|
|
|
|
android:id="@+id/likeIcon"
|
|
|
|
|
android:layout_width="14dp"
|
|
|
|
|
android:layout_height="14dp"
|
|
|
|
|
android:src="@android:drawable/btn_star_big_on"
|
|
|
|
|
android:visibility="gone" />
|
2025-12-16 15:47:36 +08:00
|
|
|
|
2025-12-30 19:20:52 +08:00
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/likeCount"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginStart="4dp"
|
|
|
|
|
android:textColor="#CCC"
|
|
|
|
|
android:textSize="12sp"
|
|
|
|
|
android:visibility="gone" />
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
</FrameLayout>
|
|
|
|
|
</androidx.cardview.widget.CardView>
|