mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 19:38:08 +00:00
27 lines
No EOL
810 B
XML
27 lines
No EOL
810 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/video_frame"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/colorB">
|
|
|
|
<TextureView
|
|
android:visibility="visible"
|
|
android:layout_height="match_parent"
|
|
android:layout_width="match_parent"
|
|
android:id="@+id/videoSurface" />
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<TextureView
|
|
android:id="@+id/videoCaptureSurface"
|
|
android:layout_width="300dp"
|
|
android:layout_height="200dp"
|
|
android:layout_alignParentBottom="true"
|
|
android:layout_alignParentRight="true" />
|
|
|
|
</RelativeLayout>
|
|
|
|
</FrameLayout> |