aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/view_video.xml
blob: 56cdeb6ca50883b14733ced34619125b4b72275d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout 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="match_parent"
        android:layout_height="match_parent"
        android:clickable="false" />

    <com.pitchedapps.frost.views.FrostVideoView
        android:id="@+id/video"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@android:color/transparent"
        android:theme="@style/FrostTheme.Video"
        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>

    <androidx.appcompat.widget.Toolbar
        android:id="@+id/video_toolbar"
        android:layout_width="match_parent"
        android:background="@drawable/exomedia_default_controls_interactive_background"
        android:layout_height="?attr/actionBarSize" />

</FrameLayout>