nut_item_coupon.xml
1.8 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
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:background="#f0faff"
android:padding="10dp"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
android:layout_marginRight="10dp"
android:layout_toLeftOf="@+id/nutTextMoney"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/nutTextName"
android:textSize="12sp"
android:textColor="@color/nut_color_black_light"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/nutTextDesc"
android:layout_marginLeft="3dp"
android:textSize="10sp"
android:textColor="#ffbbbbbb"
android:text="(满30可用)"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
<CheckBox
android:id="@+id/nutCheckCoupon"
android:checked="false"
android:background="@null"
android:button="@drawable/nut_selector_pay_check"
android:layout_centerVertical="true"
android:layout_alignParentRight="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:layout_marginRight="10dp"
android:layout_toLeftOf="@id/nutCheckCoupon"
android:layout_centerVertical="true"
android:id="@+id/nutTextMoney"
android:textSize="12sp"
android:textColor="@color/nut_color_black_light"
android:text="-¥10"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</RelativeLayout>