mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-20 13:08:07 +00:00
29 lines
No EOL
1 KiB
XML
29 lines
No EOL
1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/video_frame"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<org.linphone.mediastream.video.display.GL2JNIView
|
|
android:visibility="visible"
|
|
android:layout_height="fill_parent"
|
|
android:layout_width="fill_parent"
|
|
android:id="@+id/videoSurface" />
|
|
|
|
<SurfaceView
|
|
android:id="@+id/videoCaptureSurface"
|
|
android:layout_width="120dp"
|
|
android:layout_height="145dp"
|
|
android:layout_alignParentBottom="true"
|
|
android:layout_alignParentRight="true" />
|
|
|
|
<ImageView
|
|
android:id="@+id/switchCamera"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentLeft="true"
|
|
android:layout_alignParentTop="true"
|
|
android:contentDescription="@string/content_description_switch_camera"
|
|
android:src="@drawable/switch_camera" />
|
|
|
|
</RelativeLayout> |