79 lines
2.6 KiB
XML
79 lines
2.6 KiB
XML
|
<?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"
|
||
|
android:layout_height="wrap_content"
|
||
|
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"
|
||
|
android:layout_width="55dp"
|
||
|
android:layout_height="55dp" />
|
||
|
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/gift_name"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginTop="1dp"
|
||
|
android:textColor="@color/white"
|
||
|
android:textSize="11sp" />
|
||
|
|
||
|
<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"
|
||
|
android:textSize="10sp" />
|
||
|
</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>
|