blob: bf811426f30091d7992e742c80fa21d266c38dde [file] [log] [blame]
glaznev@webrtc.orgbc403242015-02-10 23:04:13 +00001<?xml version="1.0" encoding="utf-8"?>
2
sakalfcf97c32017-07-18 05:01:08 -07003<!-- tools:ignore is needed because lint thinks this can be replaced with a merge. Replacing this
4 with a merge causes the fullscreen SurfaceView not to be centered. -->
5<FrameLayout
6 xmlns:android="http://schemas.android.com/apk/res/android"
7 xmlns:tools="http://schemas.android.com/tools"
8 android:layout_width="match_parent"
9 android:layout_height="match_parent"
10 tools:ignore="MergeRootFrame">
glaznev@webrtc.orgbc403242015-02-10 23:04:13 +000011
sakal07a050f2017-02-13 05:58:27 -080012 <org.webrtc.SurfaceViewRenderer
13 android:id="@+id/fullscreen_video_view"
sakalfcf97c32017-07-18 05:01:08 -070014 android:layout_width="wrap_content"
15 android:layout_height="wrap_content"
16 android:layout_gravity="center" />
Magnus Jedvert70767292015-09-24 16:02:07 +020017
sakal07a050f2017-02-13 05:58:27 -080018 <org.webrtc.SurfaceViewRenderer
19 android:id="@+id/pip_video_view"
20 android:layout_height="144dp"
21 android:layout_width="wrap_content"
22 android:layout_gravity="bottom|end"
23 android:layout_margin="16dp"/>
glaznev@webrtc.orgbc403242015-02-10 23:04:13 +000024
25 <FrameLayout
26 android:id="@+id/call_fragment_container"
27 android:layout_width="match_parent"
28 android:layout_height="match_parent" />
glaznev@webrtc.org21612342015-03-17 18:23:31 +000029 <FrameLayout
30 android:id="@+id/hud_fragment_container"
31 android:layout_width="match_parent"
32 android:layout_height="match_parent" />
glaznev@webrtc.orgbc403242015-02-10 23:04:13 +000033
sakalfcf97c32017-07-18 05:01:08 -070034</FrameLayout>