channel_activity.xml
4.29 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="230dip"
android:layout_gravity="bottom" >
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:alpha="0.8"
android:background="#000000" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="bottom"
android:background="@null"
android:orientation="vertical" >
<android.support.v4.view.ViewPager
android:id="@+id/vPager"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1" >
</android.support.v4.view.ViewPager>
<LinearLayout
android:id="@+id/ll_channel_dots"
android:layout_width="match_parent"
android:layout_height="20dp"
android:gravity="center_horizontal|bottom"
android:orientation="horizontal" >
</LinearLayout>
<RelativeLayout
android:id="@+id/send_giftlin"
android:layout_width="match_parent"
android:layout_height="40dp"
android:gravity="center_vertical"
android:orientation="horizontal" >
<RelativeLayout
android:id="@+id/send_zhongguobi"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center_vertical" >
<TextView
android:id="@+id/gift_tv"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_marginLeft="13dip"
android:gravity="center"
android:text="充值:"
android:textColor="#d31863"
android:textSize="16dip" />
<TextView
android:id="@+id/user_money"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_marginLeft="6dip"
android:layout_toRightOf="@+id/gift_tv"
android:gravity="center"
android:text=""
android:textColor="#bcbcbc"
android:textSize="16dip" />
<ImageView
android:id="@+id/image_money"
android:layout_width="12dip"
android:layout_height="match_parent"
android:layout_marginLeft="1dip"
android:layout_toRightOf="@+id/user_money"
android:src="@drawable/rmb" />
<ImageView
android:id="@+id/to_recharge"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_marginLeft="5dip"
android:layout_toRightOf="@+id/image_money"
android:padding="5dip"
android:src="@drawable/gift_chongzhi" />
</RelativeLayout>
<Button
android:id="@+id/more_gift"
android:layout_width="34dip"
android:layout_height="24dip"
android:layout_centerVertical="true"
android:layout_marginRight="20dip"
android:layout_toLeftOf="@+id/send_gift"
android:background="@drawable/gift_nocheckmore"
android:gravity="center"
android:padding="2dip"
android:text="X10"
android:textColor="#ffffff"
android:textSize="12dip" />
<Button
android:id="@+id/send_gift"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_alignParentRight="true"
android:background="#d31863"
android:text="发送"
android:textColor="#ffffff"
android:textSize="13dip" />
</RelativeLayout>
</LinearLayout>
</RelativeLayout>