layout_coupon_item.xml
3.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<?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:gravity="center">
<FrameLayout
android:id="@+id/layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center">
<RelativeLayout
android:id="@+id/rl_bg"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center">
<RelativeLayout
android:layout_width="323dp"
android:layout_height="97dp"
android:layout_centerHorizontal="true"
android:layout_marginTop="9dp">
<ImageView
android:id="@+id/ima_coupon_bg"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:background="@drawable/coupon_bg" />
<TextView
android:id="@+id/tv_coupon_price"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="55dp"
android:layout_alignParentRight="true"
android:layout_marginRight="211dp"
android:text="15元"
android:textColor="@color/white" />
<TextView
android:id="@+id/tv_coupon_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="131dp"
android:layout_marginTop="14dp"
android:ellipsize="end"
android:singleLine="true"
android:text="购票中使用"
android:textColor="@color/color_333"
android:textSize="17sp" />
<TextView
android:id="@+id/tv_coupon_xz"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/tv_coupon_title"
android:layout_marginLeft="131dp"
android:layout_marginTop="9dp"
android:text="一次限使用一张优惠券"
android:textColor="@color/color_999"
android:textSize="11sp" />
<TextView
android:id="@+id/tv_coupon_date"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/tv_coupon_xz"
android:layout_marginLeft="131dp"
android:layout_marginTop="16dp"
android:text="有效期:2008-12-12"
android:textColor="@color/color_c8c8c8"
android:textSize="10sp" />
<ImageView
android:id="@+id/ima_coupon_sel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_marginRight="6dp"
android:layout_marginTop="6dp"
android:background="@mipmap/coupon_chose"
android:visibility="gone" />
</RelativeLayout>
</RelativeLayout>
<ImageView
android:id="@+id/ima_coupon_white"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</FrameLayout>
</LinearLayout>