陈嘉乐
2020-09-02 652243206427f35a256400a149a1734085824cb9
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#ffffffff"
    android:fitsSystemWindows="true"
    android:orientation="vertical">
 
    <LinearLayout        
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical"
        android:background="#f5f6fa">
        
        <LinearLayout
            
            android:layout_width="match_parent"
            android:layout_height="40dp"
            android:background="#FFFFFF"
            android:gravity="center_vertical"   
            android:orientation="vertical"
            android:minWidth="25px"
            android:minHeight="25px">        
 
        <ImageView
            android:id="@+id/icon_back"
            android:layout_width="35dp"
            android:layout_height="35dp"
            android:layout_marginStart="15dp"
            android:gravity="center"
            android:scaleType="centerInside"
            android:src="@drawable/back" />
    </LinearLayout>
 
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_marginTop="25dp"
        android:background="@drawable/video_background"
        android:orientation="vertical">
 
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content">
 
            <TextView
                android:id="@+id/tv_name"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginTop="20dp"
                android:layout_marginBottom="20dp"
                android:gravity="center"
                android:textColor="#FF000000"
                android:text="二次确认机"
                android:textSize="18sp" />
        </LinearLayout>
 
 
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="211"
            android:orientation="vertical">
 
            <FrameLayout
                android:id="@+id/localVideo"
                android:layout_width="1px"
                android:layout_height="1px"
                android:visibility="invisible"/>
            <FrameLayout
                android:id="@+id/remoteFrame"
                android:layout_width="match_parent"
                android:background="#FFFFFF"
                android:layout_height="match_parent"/>
           
 
        </LinearLayout>
 
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="36"
            android:background="#ff232323"
            android:gravity="center_vertical"
            android:orientation="horizontal">
 
            <ImageView
                android:layout_width="28dp"
                android:layout_height="28dp"
                android:src="@drawable/floor"
                android:layout_marginLeft="20dp"/>
 
            <TextView
                android:id="@+id/tv_roomName"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:textSize="18sp"
                android:layout_marginLeft="5dp"
                android:textColor="#FFFFFF"
                android:text="1栋203"/>
        </LinearLayout>
 
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="279"
            android:orientation="vertical">
            <LinearLayout
                android:id="@+id/content"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:orientation="vertical"/>
           
        </LinearLayout>
 
    </LinearLayout>
</LinearLayout>
 
</LinearLayout>