kimi
2021-02-18 749a5510a9f014446a3cd6ba57b3cb0cc8148dc1
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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/rootView"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/black"
    android:orientation="vertical">
 
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:orientation="horizontal">
 
        <ImageView
            android:id="@+id/minimizeImageView"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:paddingLeft="10dp"
            android:paddingRight="10dp"
            android:src="@drawable/av_minimize"
            android:tint="@color/white" />
 
        <View
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="1" />
 
        <ImageView
            android:id="@+id/addParticipantImageView"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:paddingLeft="10dp"
            android:paddingRight="10dp"
            android:src="@drawable/ic_tab_add"
            android:tint="@color/white" />
 
    </LinearLayout>
 
    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:minHeight="300dp"
        android:orientation="vertical"
        android:visibility="visible">
 
        <FrameLayout
            android:id="@+id/focusVideoContainerFrameLayout"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="@color/green1" />
 
 
        <androidx.gridlayout.widget.GridLayout
            android:id="@+id/videoContainerGridLayout"
            android:layout_width="match_parent"
            android:layout_height="400dp"
            android:layout_gravity="center"
            android:animateLayoutChanges="true"
            app:alignmentMode="alignBounds"
            app:columnCount="3"
            app:orientation="horizontal"
            app:rowCount="3"
            app:useDefaultMargins="false" />
    </FrameLayout>
 
    <include layout="@layout/av_multi_outgoing_connected_action" />
 
</LinearLayout>