Signal-Android/app/src/main/res/layout/mediasend_video_fragment.xml

17 lines
617 B
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
2020-02-13 14:22:21 -04:00
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
2020-02-13 14:22:21 -04:00
<org.thoughtcrime.securesms.video.VideoPlayer
android:id="@+id/video_player"
android:layout_width="match_parent"
2022-07-18 10:08:07 -03:00
android:layout_height="match_parent" />
2020-02-13 14:22:21 -04:00
<org.thoughtcrime.securesms.scribbles.VideoEditorHud
android:id="@+id/video_editor_hud"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="gone" />
</FrameLayout>