2016-06-08 20:58:45 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2016-12-25 15:17:15 +01:00
|
|
|
<RelativeLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:id="@+id/video_holder"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
2016-06-08 20:58:45 +02:00
|
|
|
|
|
|
|
<SurfaceView
|
|
|
|
android:id="@+id/video_surface"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_centerInParent="true"
|
|
|
|
android:background="@android:color/transparent"/>
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/video_play_outline"
|
|
|
|
android:layout_width="@dimen/play_outline_size_big"
|
|
|
|
android:layout_height="@dimen/play_outline_size_big"
|
|
|
|
android:layout_centerInParent="true"
|
|
|
|
android:background="@android:color/transparent"
|
2017-01-04 20:13:26 +01:00
|
|
|
android:src="@drawable/img_play_outline_big"/>
|
2016-06-08 20:58:45 +02:00
|
|
|
|
2016-06-09 00:13:30 +02:00
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/video_time_holder"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentBottom="true"
|
2016-11-10 21:29:47 +01:00
|
|
|
android:background="@drawable/gradient_background"
|
2016-06-09 21:07:41 +02:00
|
|
|
android:paddingLeft="@dimen/timer_padding"
|
2016-06-19 16:40:37 +02:00
|
|
|
android:paddingRight="@dimen/timer_padding">
|
2016-06-09 00:13:30 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/video_curr_time"
|
|
|
|
android:layout_width="wrap_content"
|
2016-06-19 16:40:37 +02:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_alignBottom="@+id/video_seekbar"
|
2016-06-09 00:13:30 +02:00
|
|
|
android:layout_alignParentLeft="true"
|
2016-10-08 15:43:38 +02:00
|
|
|
android:layout_alignParentStart="true"
|
2016-06-19 16:40:37 +02:00
|
|
|
android:layout_alignTop="@+id/video_seekbar"
|
|
|
|
android:gravity="center_vertical"
|
2016-06-09 00:13:30 +02:00
|
|
|
android:text="00:00"
|
|
|
|
android:textColor="@android:color/white"/>
|
|
|
|
|
|
|
|
<SeekBar
|
|
|
|
android:id="@+id/video_seekbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="@dimen/activity_margin"
|
|
|
|
android:layout_marginRight="@dimen/activity_margin"
|
2016-10-08 15:43:38 +02:00
|
|
|
android:layout_toEndOf="@+id/video_curr_time"
|
2016-06-09 00:13:30 +02:00
|
|
|
android:layout_toLeftOf="@+id/video_duration"
|
2016-06-19 16:40:37 +02:00
|
|
|
android:layout_toRightOf="@+id/video_curr_time"
|
2016-10-08 15:43:38 +02:00
|
|
|
android:layout_toStartOf="@+id/video_duration"
|
2016-06-19 16:40:37 +02:00
|
|
|
android:paddingBottom="@dimen/activity_margin"
|
|
|
|
android:paddingTop="@dimen/activity_margin"/>
|
2016-06-09 00:13:30 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/video_duration"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2016-06-19 16:40:37 +02:00
|
|
|
android:layout_alignBottom="@+id/video_seekbar"
|
2016-10-08 15:43:38 +02:00
|
|
|
android:layout_alignParentEnd="true"
|
2016-06-09 00:13:30 +02:00
|
|
|
android:layout_alignParentRight="true"
|
2016-06-19 16:40:37 +02:00
|
|
|
android:layout_alignTop="@+id/video_seekbar"
|
|
|
|
android:gravity="center_vertical"
|
2016-06-16 17:05:20 +02:00
|
|
|
android:text="00:00"
|
2016-06-09 00:13:30 +02:00
|
|
|
android:textColor="@android:color/white"/>
|
|
|
|
|
|
|
|
</RelativeLayout>
|
2016-06-08 20:58:45 +02:00
|
|
|
</RelativeLayout>
|