2023-07-25 14:08:52 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:id="@+id/gift_layout"
|
|
|
|
android:layout_width="match_parent"
|
2023-08-16 20:01:46 +08:00
|
|
|
android:layout_height="95dp"
|
2023-07-25 14:08:52 +08:00
|
|
|
android:background="@drawable/background_gift_select"
|
|
|
|
android:gravity="center"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/gift_icon"
|
2023-08-16 20:01:46 +08:00
|
|
|
android:layout_width="50dp"
|
|
|
|
android:layout_height="50dp" />
|
2023-07-25 14:08:52 +08:00
|
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/gift_name"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="1dp"
|
|
|
|
android:textColor="@color/white"
|
2023-08-16 20:01:46 +08:00
|
|
|
android:textSize="10sp" />
|
2023-07-25 14:08:52 +08:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/pay_ico"
|
|
|
|
android:layout_width="12dp"
|
|
|
|
android:layout_height="12dp"
|
|
|
|
android:layout_marginEnd="2dp" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/price"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textColor="@color/white"
|
2023-08-16 20:01:46 +08:00
|
|
|
android:textSize="9sp" />
|
2023-07-25 14:08:52 +08:00
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/corner_mark"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="11dp"
|
|
|
|
android:layout_gravity="end"
|
|
|
|
android:layout_marginEnd="2dp" />
|
|
|
|
</FrameLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/gift_loading_layout"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:background="#C0000000"
|
|
|
|
android:gravity="center"
|
|
|
|
android:visibility="visible">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/gift_loading"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_margin="30dp"
|
|
|
|
android:src="@mipmap/icon_download_gift" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</RelativeLayout>
|