aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/view_video.xml
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/res/layout/view_video.xml')
-rw-r--r--app/src/main/res/layout/view_video.xml53
1 files changed, 53 insertions, 0 deletions
diff --git a/app/src/main/res/layout/view_video.xml b/app/src/main/res/layout/view_video.xml
new file mode 100644
index 00000000..e8782459
--- /dev/null
+++ b/app/src/main/res/layout/view_video.xml
@@ -0,0 +1,53 @@
+<?xml version="1.0" encoding="utf-8"?>
+<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:app="http://schemas.android.com/apk/res-auto"
+ android:id="@+id/video_container"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:background="@android:color/transparent"
+ android:clickable="false"
+ android:theme="@style/FrostTheme.Video">
+
+ <View
+ android:id="@+id/video_background"
+ android:layout_width="0dp"
+ android:layout_height="0dp"
+ android:clickable="false"
+ app:layout_constraintBottom_toBottomOf="parent"
+ app:layout_constraintEnd_toEndOf="parent"
+ app:layout_constraintStart_toStartOf="parent"
+ app:layout_constraintTop_toTopOf="parent" />
+
+ <android.support.v7.widget.Toolbar
+ android:id="@+id/video_toolbar"
+ android:layout_width="0dp"
+ android:layout_height="wrap_content"
+ android:minHeight="?attr/actionBarSize"
+ app:layout_constraintEnd_toEndOf="parent"
+ app:layout_constraintStart_toStartOf="parent"
+ app:layout_constraintTop_toTopOf="parent" />
+
+ <com.pitchedapps.frost.views.FrostVideoView
+ android:id="@+id/video"
+ android:layout_width="0dp"
+ android:layout_height="0dp"
+ android:background="@android:color/transparent"
+ android:theme="@style/FrostTheme.Video"
+ app:layout_constraintBottom_toBottomOf="parent"
+ app:layout_constraintEnd_toEndOf="parent"
+ app:layout_constraintStart_toStartOf="parent"
+ app:layout_constraintTop_toBottomOf="@id/video_toolbar"
+ app:useDefaultControls="true"
+ app:useTextureViewBacking="true">
+
+ <ImageView
+ android:id="@+id/video_restart"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_centerInParent="true"
+ android:foregroundGravity="center" />
+
+ </com.pitchedapps.frost.views.FrostVideoView>
+
+
+</android.support.constraint.ConstraintLayout> \ No newline at end of file