2022-11-09 15:26:59 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:id="@+id/layout"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="58dp"
|
|
|
|
android:layout_marginStart="10dp"
|
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
android:layout_marginEnd="10dp"
|
|
|
|
android:background="@drawable/bg_drawer_popup_task">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/icon"
|
|
|
|
android:layout_width="40dp"
|
|
|
|
android:layout_height="40dp"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:layout_marginStart="9dp"
|
|
|
|
android:scaleType="fitCenter" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/title"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="9dp"
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
android:layout_toEndOf="@id/icon"
|
|
|
|
android:text="赠送送玫瑰 (5/5)"
|
|
|
|
android:textColor="#FFFFFF"
|
|
|
|
android:textSize="14sp" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/subtitle"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@id/title"
|
|
|
|
android:layout_marginStart="9dp"
|
|
|
|
android:layout_marginTop="4dp"
|
|
|
|
android:layout_toEndOf="@id/icon"
|
|
|
|
android:text="赠送送玫瑰 (5/5)"
|
|
|
|
android:textColor="#9A9A9A"
|
|
|
|
android:textSize="10sp" />
|
|
|
|
|
2022-11-10 17:04:06 +08:00
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/to_receive_layout"
|
2022-11-09 15:26:59 +08:00
|
|
|
android:layout_width="58dp"
|
|
|
|
android:layout_height="25dp"
|
|
|
|
android:layout_alignParentEnd="true"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:layout_marginEnd="9dp"
|
|
|
|
android:background="@drawable/bg_drawer_popup_task_status"
|
2022-11-10 17:04:06 +08:00
|
|
|
android:gravity="center">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/to_receive"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:gravity="center"
|
|
|
|
android:text="领取"
|
|
|
|
android:textColor="#15151D"
|
|
|
|
android:textSize="12sp" />
|
|
|
|
</FrameLayout>
|
|
|
|
|
|
|
|
|
2022-11-09 15:26:59 +08:00
|
|
|
</RelativeLayout>
|