2019-01-02 13:24:23 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<RelativeLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-01-03 23:45:59 +01:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2019-01-02 16:26:28 +01:00
|
|
|
android:id="@+id/video_player_holder"
|
2019-01-02 13:24:23 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
2019-01-29 16:00:00 +01:00
|
|
|
<com.alexvasilkov.gestures.GestureFrameLayout
|
|
|
|
android:id="@+id/video_surface_frame"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
<TextureView
|
|
|
|
android:id="@+id/video_surface"
|
2019-01-29 20:44:41 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2019-01-29 16:00:00 +01:00
|
|
|
android:layout_centerInParent="true"/>
|
|
|
|
|
|
|
|
</com.alexvasilkov.gestures.GestureFrameLayout>
|
2019-01-02 16:26:28 +01:00
|
|
|
|
|
|
|
<com.simplemobiletools.gallery.pro.views.MediaSideScroll
|
|
|
|
android:id="@+id/video_volume_controller"
|
|
|
|
android:layout_width="@dimen/media_side_slider_width"
|
|
|
|
android:layout_height="match_parent"
|
2019-05-16 23:04:51 +02:00
|
|
|
android:layout_alignParentEnd="true"/>
|
2019-01-02 16:26:28 +01:00
|
|
|
|
|
|
|
<com.simplemobiletools.gallery.pro.views.MediaSideScroll
|
|
|
|
android:id="@+id/video_brightness_controller"
|
|
|
|
android:layout_width="@dimen/media_side_slider_width"
|
|
|
|
android:layout_height="match_parent"/>
|
|
|
|
|
2019-02-07 16:33:37 +01:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/top_shadow"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="@dimen/default_status_action_height"
|
|
|
|
android:background="@drawable/gradient_background_flipped"/>
|
|
|
|
|
2019-01-29 16:05:34 +01:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/video_bottom_gradient"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_alignTop="@+id/video_time_holder"
|
|
|
|
android:layout_alignParentBottom="true"
|
|
|
|
android:background="@drawable/gradient_background"
|
|
|
|
tools:ignore="UnknownIdInLayout"/>
|
|
|
|
|
|
|
|
<include layout="@layout/bottom_video_time_holder"/>
|
|
|
|
|
2019-01-02 16:26:28 +01:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/slide_info"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentBottom="true"
|
|
|
|
android:layout_centerHorizontal="true"
|
2019-01-03 22:46:29 +01:00
|
|
|
android:layout_marginBottom="200dp"
|
2019-01-02 16:26:28 +01:00
|
|
|
android:alpha="0"
|
|
|
|
android:background="@drawable/black_rounded_background"
|
|
|
|
android:gravity="center"
|
|
|
|
android:paddingLeft="@dimen/activity_margin"
|
|
|
|
android:paddingTop="@dimen/medium_margin"
|
|
|
|
android:paddingRight="@dimen/activity_margin"
|
|
|
|
android:paddingBottom="@dimen/medium_margin"
|
|
|
|
android:textColor="@android:color/white"
|
|
|
|
android:textSize="@dimen/extra_big_text_size"/>
|
|
|
|
|
2019-01-02 13:24:23 +01:00
|
|
|
</RelativeLayout>
|