2023-06-26 18:04:58 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<FrameLayout 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="match_parent"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
|
|
|
|
<androidx.cardview.widget.CardView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="46dp"
|
|
|
|
app:cardBackgroundColor="#70323232"
|
|
|
|
app:cardCornerRadius="8dp"
|
|
|
|
app:cardElevation="0dp">
|
|
|
|
|
|
|
|
<TextView
|
2023-06-30 10:17:33 +08:00
|
|
|
android:id="@+id/red_packet_countdown"
|
2023-06-26 18:04:58 +08:00
|
|
|
android:layout_width="58dp"
|
|
|
|
android:layout_height="16dp"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:paddingStart="5dp"
|
2023-06-30 10:17:33 +08:00
|
|
|
android:text="@string/red_packet_countdown"
|
2023-06-26 18:04:58 +08:00
|
|
|
android:visibility="gone"
|
|
|
|
android:textColor="@color/white"
|
|
|
|
android:textSize="9sp" />
|
|
|
|
|
|
|
|
<LinearLayout
|
2023-06-30 10:17:33 +08:00
|
|
|
android:id="@+id/red_packet_queue"
|
2023-06-26 18:04:58 +08:00
|
|
|
android:layout_width="68dp"
|
|
|
|
android:layout_height="27dp"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingStart="6dp"
|
|
|
|
android:visibility="visible">
|
|
|
|
|
|
|
|
<TextView
|
2023-06-30 10:17:33 +08:00
|
|
|
android:id="@+id/red_schedule"
|
2023-06-26 18:04:58 +08:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="10/200"
|
|
|
|
android:textColor="@color/white"
|
|
|
|
android:textSize="9sp" />
|
|
|
|
|
|
|
|
<TextView
|
2023-06-30 10:17:33 +08:00
|
|
|
android:id="@+id/open_red_packet"
|
2023-06-26 18:04:58 +08:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="待開紅包:4"
|
|
|
|
android:textColor="@color/white"
|
|
|
|
android:textSize="9sp" />
|
|
|
|
</LinearLayout>
|
|
|
|
</androidx.cardview.widget.CardView>
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:layout_width="40dp"
|
|
|
|
android:layout_height="51dp"
|
|
|
|
android:src="@mipmap/icon_red_packet" />
|
|
|
|
</FrameLayout>
|