view_room_yule_head.xml
3.21 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
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<!--娱乐房头部-->
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="100dp">
<RelativeLayout
android:layout_width="92dp"
android:layout_height="92dp"
android:layout_centerHorizontal="true"
android:layout_gravity="center_vertical"
android:layout_marginTop="-8dp">
<ImageView
android:id="@+id/iv_anim"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="fitXY"
android:src="@drawable/anim_speckamin_zhuchi"
android:visibility="gone" />
<com.chudiangameplay.android.ui.view.RoundImageView
android:id="@+id/iv_zhuchi"
android:layout_width="54dp"
android:layout_height="54dp"
android:layout_centerInParent="true"
android:background="@drawable/shape_circle_white_stroke_dfdfdf"
android:scaleType="fitXY"
android:src="@drawable/ico_im_default_head"
app:type="circle" />
</RelativeLayout>
<!--主持昵称-->
<TextView
android:id="@+id/tv_zhuchi"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:layout_marginBottom="10dp"
android:text="主持位"
android:textColor="#fff"
android:textSize="15sp"
android:textStyle="bold" />
<LinearLayout
android:id="@+id/ll_room_notice"
android:layout_width="96dp"
android:layout_height="26dp"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:layout_marginBottom="14dp"
android:layout_marginRight="16dp"
android:background="@drawable/shape_round4dp_22ffffff"
android:gravity="center_vertical">
<ImageView
android:layout_width="12dp"
android:layout_height="12dp"
android:layout_marginLeft="9dp"
android:src="@drawable/ico_room_gonggao" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="8dp"
android:gravity="center"
android:text="房间公告"
android:textColor="#fff"
android:textSize="10sp" />
<ImageView
android:layout_width="4dp"
android:layout_height="10dp"
android:layout_marginLeft="15dp"
android:src="@drawable/ico_arrow_white" />
</LinearLayout>
</RelativeLayout>
</RelativeLayout>