cnstream_reconnect_layout.xml
1.42 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
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/streamer_reconnect"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="gone">
<include layout="@layout/cnsteam_layout_with_logo" />
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_alignParentBottom="true"
android:layout_marginBottom="72dp">
<TextView
android:id="@+id/end"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:text="抱歉,直播暂时无法连接"
android:textColor="#ffffff"
android:textSize="14sp" />
<TextView
android:id="@+id/retry"
android:layout_width="160dp"
android:layout_height="40dp"
android:layout_centerHorizontal="true"
android:background="@drawable/stream_start_live_text_bg"
android:gravity="center"
android:text="点击重试"
android:textColor="#ffffff"
android:layout_below="@+id/end"
android:layout_marginTop="50dp"
android:textSize="14sp" />
</RelativeLayout>
</RelativeLayout>