113 lines
4.2 KiB
XML
113 lines
4.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
tools:viewBindingIgnore="true"
|
|
android:background="@color/giftBackground"
|
|
android:orientation="vertical">
|
|
|
|
<RelativeLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content">
|
|
|
|
<androidx.viewpager.widget.ViewPager
|
|
android:id="@+id/gift_pager"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="233dp"></androidx.viewpager.widget.ViewPager>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/gift_view_group"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@+id/ad_pager"
|
|
android:layout_marginTop="-25px"
|
|
android:gravity="center"
|
|
android:orientation="horizontal" />
|
|
</RelativeLayout>
|
|
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="2px"
|
|
android:background="@color/bottomCuttingLine" />
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="54dp"
|
|
android:orientation="horizontal">
|
|
|
|
<RelativeLayout
|
|
android:id="@+id/gift_shell_layout"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent">
|
|
|
|
<ImageView
|
|
android:id="@+id/gift_shell_logo"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerVertical="true"
|
|
android:layout_marginLeft="16dp"
|
|
android:src="@drawable/ic_shell" />
|
|
|
|
<TextView
|
|
android:id="@+id/gift_shell_number"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerVertical="true"
|
|
android:layout_marginLeft="5dp"
|
|
android:layout_toRightOf="@+id/gift_shell_logo"
|
|
android:text="16400"
|
|
android:textColor="#FF58E9"
|
|
android:textSize="17sp" />
|
|
|
|
<ImageView
|
|
android:id="@+id/iv_recharge"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerVertical="true"
|
|
android:layout_marginLeft="5dp"
|
|
android:layout_toRightOf="@+id/gift_shell_number"
|
|
android:src="@drawable/ic_broadcast_next" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="5dp"
|
|
android:layout_marginTop="16dp"
|
|
android:layout_toRightOf="@+id/iv_recharge"
|
|
android:text="充值"
|
|
android:textColor="#FF58E9" />
|
|
|
|
</RelativeLayout>
|
|
|
|
<Button
|
|
android:id="@+id/gift_button"
|
|
android:layout_width="100dp"
|
|
android:layout_height="41dp"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_centerVertical="true"
|
|
android:layout_marginRight="16dp"
|
|
android:background="@drawable/selector_gift_send"
|
|
android:text="发送"
|
|
android:textColor="@android:color/white"
|
|
android:textSize="17sp"
|
|
android:visibility="gone" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_give_gift"
|
|
android:textColor="#fff"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_centerVertical="true"
|
|
android:layout_marginRight="16dp"
|
|
android:background="@drawable/shape_give_gift_orange_be"
|
|
android:paddingBottom="8dp"
|
|
android:paddingLeft="20dp"
|
|
android:paddingRight="20dp"
|
|
android:paddingTop="8dp"
|
|
android:text="赠送"
|
|
android:textSize="14sp" />
|
|
</RelativeLayout>
|
|
|
|
</LinearLayout> |