60 lines
2.1 KiB
XML
60 lines
2.1 KiB
XML
<?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
|
|
android:id="@+id/red_packet_countdown"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="16dp"
|
|
android:gravity="center_vertical"
|
|
android:paddingStart="5dp"
|
|
android:paddingEnd="5dp"
|
|
android:text="@string/red_packet_countdown"
|
|
android:textColor="@color/white"
|
|
android:textSize="9sp"
|
|
android:visibility="gone" />
|
|
|
|
<LinearLayout
|
|
android:id="@+id/red_packet_queue"
|
|
android:layout_width="68dp"
|
|
android:layout_height="27dp"
|
|
android:gravity="center_vertical"
|
|
android:orientation="vertical"
|
|
android:paddingStart="6dp"
|
|
android:visibility="visible">
|
|
|
|
<TextView
|
|
android:id="@+id/red_schedule"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="10/200"
|
|
android:textColor="@color/white"
|
|
android:textSize="9sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/open_red_packet"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/open_red_packet"
|
|
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> |