ht_dialog_coupon.xml
3.0 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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:orientation="vertical"
android:layout_height="wrap_content">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
style="@style/ht_title_style">
<TextView
android:layout_width="match_parent"
android:layout_height="40dp"
android:text="可用优惠券列表"
style="@style/ht_title_text_style" />
<ImageView
android:id="@+id/ht_close_img"
style="@style/ht_close_style"
android:layout_width="18dp"
android:layout_height="18dp" />
</RelativeLayout>
<RelativeLayout
android:layout_width="match_parent"
style="@style/ht_content_style"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:orientation="vertical"
android:layout_height="wrap_content">
<FrameLayout
android:layout_width="match_parent"
android:layout_weight="1"
android:layout_height="match_parent">
<ProgressBar
android:id="@+id/ht_coupon_center_pro"
android:layout_width="wrap_content"
android:layout_gravity="center"
android:indeterminateDrawable="@drawable/ht_loading_progressbar"
android:layout_height="wrap_content" />
<ListView
android:id="@+id/ht_coupon_center_lv"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="2dp"
android:cacheColorHint="#00000000"
android:divider="@color/ht_transparent"
android:dividerHeight="6dp"
android:fadingEdge="none"
android:fadingEdgeLength="0dp"
android:layout_marginBottom="15dp"
android:listSelector="#00000000" />
<ImageView
android:id="@+id/ht_coupon_center_nothing"
android:layout_width="80dp"
android:layout_height="80dp"
android:visibility="invisible"
android:background="@drawable/ht_icon_exit"
android:layout_gravity="center" />
</FrameLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_marginVertical="5dp"
android:layout_height="wrap_content">
<TextView
android:id="@+id/ht_coupon_center_tips"
android:layout_width="wrap_content"
android:layout_centerInParent="true"
android:gravity="center_vertical"
android:text="关注公众号即可领取更多优惠大礼包哟!"
android:layout_height="wrap_content" />
</RelativeLayout>
</LinearLayout>
</RelativeLayout>
</LinearLayout>