2017-01-10 07:14:27 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2017-03-09 23:21:02 +01:00
|
|
|
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-03-12 13:41:29 +01:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2017-01-10 07:14:27 +01:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2017-03-12 13:41:29 +01:00
|
|
|
android:background="@color/view_video_background"
|
2017-03-20 08:03:03 +01:00
|
|
|
android:id="@+id/view_video_container"
|
2017-03-12 13:41:29 +01:00
|
|
|
tools:context=".ViewVideoActivity">
|
2017-01-10 07:14:27 +01:00
|
|
|
<VideoView
|
2018-10-01 11:50:17 +02:00
|
|
|
android:id="@+id/videoPlayer"
|
2017-01-10 07:14:27 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2017-07-14 07:26:58 +02:00
|
|
|
android:layout_gravity="center" />
|
2017-05-06 13:30:52 +02:00
|
|
|
<ProgressBar
|
2018-10-01 11:50:17 +02:00
|
|
|
android:id="@+id/videoProgressBar"
|
2017-05-06 13:30:52 +02:00
|
|
|
android:layout_gravity="center"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content" />
|
2017-03-12 13:41:29 +01:00
|
|
|
<android.support.v7.widget.Toolbar
|
|
|
|
android:id="@+id/toolbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="?attr/actionBarSize"
|
|
|
|
android:theme="@style/AppTheme.Account.AppBarLayout"
|
2018-10-01 11:50:17 +02:00
|
|
|
app:popupTheme="?attr/toolbar_popup_theme"
|
|
|
|
android:background="@color/toolbar_view_media" />
|
2017-03-09 23:21:02 +01:00
|
|
|
</android.support.design.widget.CoordinatorLayout>
|