cnlive_layout_ugc_live_end.xml
3.09 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
<?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="match_parent"
android:background="#000000"
android:id="@+id/liveEndLayout">
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true">
<TextView
android:id="@+id/name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="直播结束"
android:textSize="26dp"
android:layout_marginBottom="20dp"
android:layout_centerHorizontal="true"
android:textColor="@android:color/white"/>
<View
android:id="@+id/line"
android:layout_width="100dp"
android:layout_height="1px"
android:background="#9e9e9e"
android:layout_marginBottom="50dp"
android:layout_below="@+id/name"
android:layout_centerHorizontal="true"/>
<TextView
android:id="@+id/watchCount"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="22222分看过"
android:textColor="#999999"
android:layout_marginBottom="30dp"
android:textSize="19dp"
android:layout_centerHorizontal="true"
android:layout_below="@+id/line"/>
<TextView
android:id="@+id/contributionCount"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="22222分看过"
android:textColor="#999999"
android:textSize="19dp"
android:layout_centerHorizontal="true"
android:layout_below="@+id/watchCount"/>
<ImageView
android:id="@+id/replay"
android:layout_width="55dp"
android:layout_height="55dp"
android:layout_below="@+id/contributionCount"
android:layout_centerHorizontal="true"
android:layout_marginTop="50dp"
android:layout_marginBottom="15dp"
android:src="@drawable/cnlive_replay"/>
<TextView
android:id="@+id/replayText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="重播"
android:textColor="@android:color/white"
android:textSize="14dp"
android:layout_centerHorizontal="true"
android:layout_below="@+id/replay"/>
<TextView
android:id="@+id/movieInfo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="22222分看过"
android:textColor="@android:color/white"
android:textSize="14dp"
android:layout_centerHorizontal="true"
android:layout_marginTop="50dp"
android:layout_below="@+id/replayText"/>
</RelativeLayout>
</RelativeLayout>