layout_liveshow_content.xml
4.84 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
114
115
116
117
118
119
120
121
122
123
124
<?xml version="1.0" encoding="utf-8"?><!--推荐直播 item布局-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/liveshow_content_root"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/white"
android:orientation="vertical"
android:paddingBottom="7dp"
android:paddingTop="7dp">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingLeft="10dp"
android:paddingRight="10dp">
<FrameLayout
android:id="@+id/liveshow_content_img_layout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true">
<ImageView
android:id="@+id/liveshow_content_img"
android:layout_width="107dp"
android:layout_height="80dp"
android:scaleType="centerCrop"
tools:background="@drawable/rectangle_f8b551_fill" />
<ImageView
android:id="@+id/liveshow_content_img_tag"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="5dp"
android:layout_marginTop="5dp"
android:scaleType="fitCenter"
android:src="@mipmap/index_live_icon" />
</FrameLayout>
<ImageView
android:id="@+id/liveshow_content_img_order"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_marginTop="47dp"
tools:src="@mipmap/index_order_button" />
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="12dp"
android:layout_marginTop="7dp"
android:layout_toLeftOf="@id/liveshow_content_img_order"
android:layout_toRightOf="@id/liveshow_content_img_layout"
android:gravity="left"
android:orientation="vertical">
<TextView
android:id="@+id/liveshow_content_tv_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:ellipsize="end"
android:gravity="center_vertical|left"
android:includeFontPadding="false"
android:maxLines="1"
android:text="标题"
android:textColor="#060606"
android:textSize="14sp" />
<TextView
android:id="@+id/liveshow_content_tv_des"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="6dp"
android:ellipsize="end"
android:gravity="center_vertical|left"
android:includeFontPadding="false"
android:maxLines="1"
android:textColor="#999"
android:textSize="13sp"
tools:text="内容描述" />
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
android:id="@+id/liveshow_content_tv_type"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="12.5dp"
android:gravity="center"
android:includeFontPadding="false"
android:paddingBottom="1.3dp"
android:paddingLeft="1.5dp"
android:paddingRight="1.5dp"
android:paddingTop="1.2dp"
android:textSize="9sp"
tools:background="@drawable/rectangle_f8b551"
tools:text="话剧" />
<TextView
android:id="@+id/liveshow_content_tv_online"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="9dp"
android:layout_marginTop="14dp"
android:drawableLeft="@mipmap/index_people_icon"
android:drawablePadding="5dp"
android:includeFontPadding="false"
android:text="1023人观看"
android:textColor="#cdcdcd"
android:textSize="10sp" />
</LinearLayout>
</LinearLayout>
</RelativeLayout>
</LinearLayout>