123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- <?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"
- android:orientation="vertical"
- >
- <TextView
- android:id="@+id/tysdkn_recharge_gift_tv"
- android:layout_width="70dp"
- android:layout_height="24dp"
- android:background="@drawable/tysdkn_gift_orange_bg"
- android:text="充值礼包"
- android:textColor="#FFFFFF"
- android:textSize="13sp"
- android:visibility="visible" />
- <RelativeLayout
- android:id="@+id/tysdkn_layout_item_gift_rv"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="10dp"
- android:layout_marginLeft="10dp"
- android:layout_marginRight="10dp"
- >
- <LinearLayout
- android:id="@+id/tysdkn_ll_gift_info"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="@drawable/tysdkn_gift_listview_bg"
- android:orientation="vertical">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="0dp"
- android:layout_weight="1"
- android:orientation="vertical">
- <TextView
- android:id="@+id/tysdkn_tv_gift_name"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="13dp"
- android:layout_marginTop="12dp"
- android:singleLine="true"
- android:maxEms="10"
- android:text="礼包名称"
- android:textColor="#111111"
- android:textSize="14sp" />
- <TextView
- android:id="@+id/tysdkn_gift_number_tv"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="13dp"
- android:layout_marginTop="7dp"
- android:layout_marginRight="16dp"
- android:ellipsize="end"
- android:lines="1"
- android:text="剩余数量: 110"
- android:textColor="#666666"
- android:textSize="10sp" />
- <TextView
- android:id="@+id/tysdkn_tv_gift_desc"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="13dp"
- android:layout_marginTop="7dp"
- android:layout_marginRight="16dp"
- android:ellipsize="end"
- android:layout_marginBottom="10dp"
- android:lines="1"
- android:text="礼包描述"
- android:textColor="#666666"
- android:textSize="10sp" />
- </LinearLayout>
- </LinearLayout>
- <Button
- android:id="@+id/tysdkn_bt_gift_center"
- android:layout_width="41dp"
- android:layout_height="23dp"
- android:layout_alignParentRight="true"
- android:layout_centerVertical="true"
- android:layout_marginRight="13dp"
- android:background="@drawable/tysdkn_gift_blue_bg"
- android:text="领取"
- android:textColor="#ffffff"
- android:textSize="12sp" />
- </RelativeLayout>
- </LinearLayout>
|