127 lines
4.6 KiB
XML
127 lines
4.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:id="@+id/gift_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="87dp"
|
|
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="50dp"
|
|
android:layout_height="50dp" />
|
|
|
|
<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="10sp" />
|
|
|
|
<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="9sp" />
|
|
</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" />
|
|
|
|
<RelativeLayout
|
|
android:id="@+id/namingLayout"
|
|
android:layout_width="70dp"
|
|
android:layout_height="20dp"
|
|
android:visibility="gone"
|
|
tools:visibility="visible"
|
|
android:layout_marginBottom="27dp"
|
|
android:layout_gravity="center_horizontal|bottom">
|
|
|
|
<LinearLayout
|
|
android:background="@mipmap/item_frame_gift_naming_bg"
|
|
android:layout_width="match_parent"
|
|
android:layout_centerVertical="true"
|
|
android:layout_height="18dp">
|
|
|
|
<com.yunbao.common.views.weight.MarqueeTextView
|
|
android:id="@+id/naming_name"
|
|
android:layout_width="0dp"
|
|
android:layout_marginStart="23dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_weight="1"
|
|
android:ellipsize="marquee"
|
|
android:layout_marginEnd="3dp"
|
|
android:focusable="true"
|
|
android:focusableInTouchMode="true"
|
|
android:gravity="center"
|
|
android:marqueeRepeatLimit="marquee_forever"
|
|
android:scrollHorizontally="true"
|
|
android:singleLine="true"
|
|
android:textColor="#FFFFFFFF"
|
|
android:textSize="10sp" />
|
|
</LinearLayout>
|
|
|
|
<com.makeramen.roundedimageview.RoundedImageView
|
|
android:id="@+id/avatar"
|
|
android:layout_width="20dp"
|
|
android:layout_centerVertical="true"
|
|
android:layout_height="20dp"
|
|
android:scaleType="centerCrop"
|
|
android:src="@drawable/m_chu_xia"
|
|
app:riv_oval="true" />
|
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
</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="gone">
|
|
|
|
<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> |