Make video player in media player control a view stub

This commit is contained in:
Moxie Marlinspike
2018-01-16 11:21:58 -08:00
parent d3bf6a1c59
commit 94e2b9e66e
3 changed files with 27 additions and 15 deletions

View File

@@ -10,11 +10,11 @@
android:layout_height="match_parent"
android:contentDescription="@string/media_preview_activity__media_content_description" />
<org.thoughtcrime.securesms.video.VideoPlayer
android:id="@+id/video_player"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="gone"/>
<ViewStub android:id="@+id/video_player_stub"
android:inflatedId="@+id/video_player"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="gone"
android:layout="@layout/media_view_video"/>
</merge>

View File

@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<org.thoughtcrime.securesms.video.VideoPlayer
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/video_player"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="gone"/>