<?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>
|