dialog_room_diandanpaixu_manager.xml
2.38 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
<?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:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<View
android:id="@+id/view_bg"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#77555555"></View>
<RelativeLayout
android:id="@+id/rl_content"
android:layout_width="match_parent"
android:layout_height="350dp"
android:layout_alignParentBottom="true"
android:background="@drawable/shape_room_half_round6dp_ffffff"
android:gravity="center_horizontal"
android:orientation="vertical">
<ImageView
android:id="@+id/iv_close"
android:layout_width="40dp"
android:layout_height="40dp"
android:padding="14dp"
android:src="@drawable/icon_close" />
<TextView
android:id="@+id/tv_title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:paddingTop="13dp"
android:paddingBottom="13dp"
android:text="你在队列中的位置:"
android:textColor="@color/text_333333"
android:textSize="15sp" />
<include layout="@layout/view_public_line"
android:layout_width="match_parent"
android:layout_height="1px"
android:layout_below="@+id/tv_title"/>
<com.chudiangameplay.android.ui.view.MultiStateView
android:id="@+id/multiplestatusView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/tv_title"
android:layout_marginTop="1px"
app:msv_emptyView="@layout/view_public_empty"
app:msv_errorView="@layout/view_public_error_view"
app:msv_loadingView="@layout/view_public_loading_view">
<android.support.v7.widget.RecyclerView
android:id="@+id/recyclerview"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</com.chudiangameplay.android.ui.view.MultiStateView>
</RelativeLayout>
</RelativeLayout>