forked from 100mslive/100ms-android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fragment_pinned_video.xml
30 lines (25 loc) · 1.1 KB
/
fragment_pinned_video.xml
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
<?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"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
tools:context=".ui.meeting.pinnedvideo.PinnedVideoFragment">
<com.google.android.material.card.MaterialCardView
android:id="@+id/materialCardView"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="match_parent"
android:layout_margin="4dp">
<include
android:id="@+id/pin_video"
layout="@layout/video_card" />
</com.google.android.material.card.MaterialCardView>
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recycler_view_videos"
android:layout_width="@dimen/video_list_size"
android:layout_height="match_parent"
app:layout_constraintEnd_toEndOf="parent"
tools:listitem="@layout/list_item_video" />
</LinearLayout>