layout_theatre_basicinfo.xml
2.03 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
<?xml version="1.0" encoding="utf-8"?><!--直播详情 节目预约 点播详情中剧院基础信息Item-->
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/theatre_layout_parent"
android:layout_width="match_parent"
android:layout_height="55dp"
>
<ImageView
android:id="@+id/theatre_img"
android:layout_width="32dp"
android:layout_height="32dp"
android:layout_marginLeft="10dp"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
tools:background="@mipmap/icon_apklogo" />
<TextView
android:id="@+id/theatre_tv_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="11dp"
android:layout_marginTop="17dp"
android:layout_centerVertical="true"
android:layout_toRightOf="@id/theatre_img"
android:textColor="#666"
android:textSize="13sp"
tools:text="Board Way Theater" />
<TextView
android:id="@+id/theatre_tv_fans"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/theatre_tv_title"
android:layout_marginLeft="11dp"
android:layout_marginTop="9dp"
android:layout_toRightOf="@id/theatre_img"
android:textColor="#a7a7a7"
android:textSize="11sp"
tools:text="123万粉丝" />
<ImageView
android:id="@+id/theatre_img_arrow"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:src="@mipmap/icon_theatre_next_button" />
<View
android:id="@+id/theatre_cut_bottom"
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_alignParentBottom="true"
android:background="#f2f2f2" />
</RelativeLayout>