123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="horizontal"
- android:layout_width="@dimen/layw410"
- android:layout_height="@dimen/layw56"
- android:layout_gravity="center"
- android:baselineAligned="false">
- <ImageView
- android:contentDescription="@string/app_name"
- android:layout_width="@dimen/layw410"
- android:layout_height="@dimen/layw56"
- android:src="@drawable/shop_list_item_bg"
- android:scaleType="fitXY"
- />
- <LinearLayout
- android:layout_width="wrap_content"
- android:layout_height="@dimen/layw56"
- android:layout_marginLeft="@dimen/layw15"
- android:orientation="horizontal"
- android:gravity="center">
- <TextView
- android:id="@+id/gift_name"
- android:layout_width="@dimen/layw100"
- android:layout_height="wrap_content"
- android:textColor="#ffffff"
- android:textSize="@dimen/layw14"
- android:gravity="left|center"/>
- <TextView
- android:id="@+id/gift_desc"
- android:layout_width="@dimen/layw150"
- android:layout_height="wrap_content"
- android:layout_marginLeft="@dimen/layw15"
- android:textColor="#ffffff"
- android:textSize="@dimen/layw12"
- android:gravity="left|center"/>
- </LinearLayout>
- <Button
- android:id="@+id/gift_alipay"
- android:contentDescription="@string/app_name"
- android:layout_width="@dimen/layw100"
- android:layout_height="@dimen/layw35"
- android:layout_marginTop="@dimen/layw9"
- android:layout_marginLeft="@dimen/layw295"
- android:gravity="center"
- android:background="@drawable/common_btn"
- android:text="领取"
- style="@style/shop_text_style"/>
- </RelativeLayout>
|