layout_theater_info_expanded.xml
2.77 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
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/theaterinfo_root"
android:orientation="vertical">
<RelativeLayout
android:id="@+id/expanded_layout_title"
android:layout_width="wrap_content"
android:layout_height="43dp"
android:paddingLeft="10dp"
android:paddingRight="10dp">
<TextView
android:id="@+id/theaterinfo_expanded_tv_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:textColor="#333"
android:textSize="14sp"
tools:text="百老汇经典歌剧(JERSEY BOYS)" />
<ImageView
android:id="@+id/img_close"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:src="@mipmap/close_button" />
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_alignParentBottom="true"
android:background="@color/color_cutline_ececec" />
</RelativeLayout>
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/expanded_layout_title"
android:layout_marginTop="15dp">
<TextView
android:id="@+id/theaterinfo_expanded_tv_info"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="10dp"
android:paddingRight="10dp"
android:lineSpacingExtra="2dp"
android:lineSpacingMultiplier="1.25"
android:textColor="#979797"
android:textSize="14sp"
tools:text="陈末(邓超饰)被称为全城最贱,每天和王牌DJ小容(杜鹃饰)针锋相对,谁也不知道他们的仇恨从何而来。陈末的两个兄弟,分别是全城最傻的猪头(岳云鹏饰),全城最纯的茅十八(杨洋饰),三人每天横冲直撞,以为可以自在生活,结果都面临人生最大的转折点。陈末相遇了最神秘的幺鸡(张天爱饰),猪头打造了最惨烈的婚礼,茅十八经历了最悲伤的别离,这群人的生活一点点崩塌,往事一点点揭开。梦想,爱情,友情都离陈末远去。一个失去所有的人,已经弄丢自己的路,直到听到来自全世界的一段语音。" />
</ScrollView>
</RelativeLayout>