2022-01-18 00:24:23 +00:00
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2022-08-31 19:58:26 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:id="@+id/player_holder"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:screenOrientation="landscape"
|
|
|
|
android:tag="television"
|
|
|
|
tools:orientation="vertical">
|
2022-01-18 00:24:23 +00:00
|
|
|
|
2023-04-11 16:04:24 +00:00
|
|
|
|
2022-01-18 00:24:23 +00:00
|
|
|
<FrameLayout
|
2023-04-11 16:04:24 +00:00
|
|
|
android:id="@+id/piphide"
|
2022-08-31 19:58:26 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
2022-01-18 00:24:23 +00:00
|
|
|
|
|
|
|
<View
|
2022-08-31 19:58:26 +00:00
|
|
|
android:id="@+id/shadow_overlay"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:background="@drawable/player_gradient_tv" />
|
2023-04-11 16:04:24 +00:00
|
|
|
<!--
|
|
|
|
<LinearLayout android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="end"
|
|
|
|
android:id="@+id/video_lock_holder"
|
|
|
|
>
|
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:layout_margin="5dp"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
tools:ignore="UselessParent">
|
|
|
|
<ImageView
|
|
|
|
android:layout_width="30dp"
|
|
|
|
android:layout_height="30dp"
|
|
|
|
android:layout_margin="20dp"
|
|
|
|
android:id="@+id/video_locked_img"
|
|
|
|
android:layout_gravity="end|center_vertical"
|
|
|
|
android:src="@drawable/video_locked">
|
|
|
|
</ImageView>
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/video_lock"
|
|
|
|
android:layout_width="70dp"
|
|
|
|
android:layout_height="70dp"
|
|
|
|
android:layout_gravity="end|center_vertical"
|
|
|
|
android:focusable="true"
|
|
|
|
android:clickable="true"
|
|
|
|
android:background="@drawable/video_tap_button_always_white">
|
|
|
|
</ImageView>
|
|
|
|
|
|
|
|
</FrameLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
-->
|
2023-07-17 19:47:27 +00:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layoutDirection="ltr"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/player_progressbar_left_holder"
|
|
|
|
android:layout_width="100dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:gravity="start"
|
|
|
|
android:visibility="gone"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
|
app:layout_constraintRight_toLeftOf="@+id/centerMenuView"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
tools:alpha="1"
|
|
|
|
tools:visibility="visible">
|
|
|
|
<!--VERY hacky layout -->
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/player_progressbar_left_icon"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_centerHorizontal="true"
|
|
|
|
android:layout_marginBottom="220dp"
|
|
|
|
android:src="@drawable/ic_baseline_volume_up_24"
|
|
|
|
app:tint="@android:color/white"
|
|
|
|
tools:ignore="ContentDescription">
|
|
|
|
|
|
|
|
</ImageView>
|
|
|
|
|
|
|
|
<ProgressBar
|
|
|
|
android:id="@+id/player_progressbar_left"
|
|
|
|
style="@android:style/Widget.Material.ProgressBar.Horizontal"
|
|
|
|
android:layout_width="5dp"
|
|
|
|
android:layout_height="150dp"
|
|
|
|
android:layout_centerInParent="true"
|
|
|
|
android:layout_gravity="end|center_vertical"
|
|
|
|
android:layout_marginStart="40dp"
|
|
|
|
android:indeterminate="false"
|
|
|
|
android:max="100"
|
|
|
|
android:progress="100"
|
|
|
|
android:progressDrawable="@drawable/progress_drawable_vertical"
|
|
|
|
tools:progress="30" />
|
|
|
|
</RelativeLayout>
|
|
|
|
|
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/player_progressbar_right_holder"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:gravity="right"
|
|
|
|
android:visibility="gone"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintLeft_toRightOf="@+id/centerMenuView"
|
|
|
|
app:layout_constraintRight_toRightOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
tools:alpha="1"
|
|
|
|
tools:ignore="RtlHardcoded"
|
|
|
|
tools:visibility="visible">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/player_progressbar_right_icon"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_centerHorizontal="true"
|
|
|
|
android:layout_marginBottom="220dp"
|
|
|
|
android:src="@drawable/ic_baseline_brightness_7_24"
|
|
|
|
app:tint="@android:color/white"
|
|
|
|
tools:ignore="ContentDescription">
|
|
|
|
|
|
|
|
</ImageView>
|
|
|
|
|
|
|
|
<ProgressBar
|
|
|
|
android:id="@+id/player_progressbar_right"
|
|
|
|
style="@android:style/Widget.Material.ProgressBar.Horizontal"
|
|
|
|
android:layout_width="5dp"
|
|
|
|
android:layout_height="150dp"
|
|
|
|
android:layout_centerInParent="true"
|
|
|
|
android:layout_gravity="end|center_vertical"
|
|
|
|
android:layout_marginEnd="40dp"
|
|
|
|
android:indeterminate="false"
|
|
|
|
android:max="100"
|
|
|
|
android:progress="100"
|
|
|
|
android:progressDrawable="@drawable/progress_drawable_vertical" />
|
|
|
|
</RelativeLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/player_time_text"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="200dp"
|
|
|
|
android:gravity="center"
|
|
|
|
android:shadowColor="@android:color/black"
|
|
|
|
android:shadowRadius="10.0"
|
|
|
|
android:textColor="@android:color/white"
|
|
|
|
android:textSize="30sp"
|
|
|
|
android:visibility="gone"
|
|
|
|
tools:text="+100"
|
|
|
|
tools:visibility="visible" />
|
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/player_pause_play_holder_holder"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:visibility="gone"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
|
app:layout_constraintRight_toRightOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
2023-04-11 16:04:24 +00:00
|
|
|
|
2023-07-18 01:55:00 +00:00
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/player_intro_play"
|
|
|
|
android:layout_width="0dp"
|
2023-07-25 19:15:10 +00:00
|
|
|
android:layout_height="0dp"
|
|
|
|
android:visibility="gone" />
|
2023-07-18 01:55:00 +00:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/player_open_source"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:clickable="false"
|
|
|
|
android:focusable="false"
|
|
|
|
android:focusableInTouchMode="false"
|
2023-07-25 19:15:10 +00:00
|
|
|
android:importantForAccessibility="no"
|
|
|
|
android:visibility="gone" />
|
2023-07-18 01:55:00 +00:00
|
|
|
|
|
|
|
<!-- atm this is useless, however it might be used for PIP one day? -->
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/player_fullscreen"
|
|
|
|
android:layout_width="30dp"
|
|
|
|
android:layout_height="30dp"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:layout_marginEnd="20dp"
|
|
|
|
android:background="?android:attr/selectableItemBackgroundBorderless"
|
|
|
|
android:src="@drawable/baseline_fullscreen_24"
|
2023-07-25 19:15:10 +00:00
|
|
|
android:visibility="gone"
|
2023-07-18 01:55:00 +00:00
|
|
|
app:tint="@color/white" />
|
|
|
|
|
2023-04-11 16:04:24 +00:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
|
|
android:id="@+id/player_video_holder"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:padding="16dp">
|
2022-01-18 00:24:23 +00:00
|
|
|
|
2023-07-17 19:47:27 +00:00
|
|
|
<com.google.android.material.button.MaterialButton
|
|
|
|
android:id="@+id/skip_chapter_button"
|
|
|
|
style="@style/NiceButton"
|
|
|
|
android:layout_width="150dp"
|
|
|
|
android:layout_height="40dp"
|
|
|
|
android:layout_marginEnd="100dp"
|
|
|
|
android:backgroundTint="@color/skipOpTransparent"
|
|
|
|
android:maxLines="1"
|
2023-07-25 19:15:10 +00:00
|
|
|
android:nextFocusLeft="@id/player_pause_play"
|
|
|
|
android:nextFocusUp="@id/player_go_back"
|
|
|
|
android:nextFocusDown="@id/player_pause_play"
|
2023-07-17 19:47:27 +00:00
|
|
|
android:padding="10dp"
|
|
|
|
android:textColor="@color/white"
|
|
|
|
android:visibility="gone"
|
|
|
|
app:cornerRadius="@dimen/rounded_button_radius"
|
|
|
|
app:layout_constraintBottom_toTopOf="@+id/bottom_player_bar"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:strokeColor="@color/white"
|
|
|
|
app:strokeWidth="1dp"
|
|
|
|
tools:text="Skip Opening"
|
|
|
|
tools:visibility="visible" />
|
|
|
|
|
2022-01-18 00:24:23 +00:00
|
|
|
<FrameLayout
|
2023-04-11 16:04:24 +00:00
|
|
|
android:id="@+id/player_top_holder"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
2023-07-17 19:47:27 +00:00
|
|
|
<LinearLayout
|
2023-04-11 16:04:24 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="80dp"
|
|
|
|
android:layout_marginTop="20dp"
|
|
|
|
android:layout_marginEnd="32dp"
|
2023-07-17 19:47:27 +00:00
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/player_video_title"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="end"
|
|
|
|
android:textColor="@color/white"
|
|
|
|
android:textSize="16sp"
|
|
|
|
android:textStyle="bold"
|
|
|
|
tools:text="Hello world" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/player_video_title_rez"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="end"
|
|
|
|
android:textColor="@color/white"
|
|
|
|
android:textSize="16sp"
|
|
|
|
tools:text="1920x1080" />
|
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/player_episode_filler_holder"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="end"
|
|
|
|
android:layout_marginTop="2dp">
|
|
|
|
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
|
|
android:id="@+id/player_episode_filler"
|
|
|
|
style="@style/SmallBlackButton"
|
|
|
|
android:text="@string/filler" />
|
|
|
|
</FrameLayout>
|
|
|
|
</LinearLayout>
|
2023-04-11 16:04:24 +00:00
|
|
|
|
|
|
|
<!-- Removed as it has no use anymore-->
|
|
|
|
<!--<androidx.mediarouter.app.MediaRouteButton
|
|
|
|
android:id="@+id/player_media_route_button"
|
|
|
|
android:layout_width="70dp"
|
|
|
|
android:layout_height="70dp"
|
|
|
|
android:layout_gravity="end"
|
|
|
|
android:layout_margin="5dp"
|
|
|
|
android:mediaRouteTypes="user"
|
|
|
|
android:visibility="visible"
|
|
|
|
app:layout_constraintRight_toRightOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />-->
|
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/player_go_back_holder"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_margin="5dp"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent">
|
|
|
|
|
|
|
|
<ImageView
|
2022-01-18 00:24:23 +00:00
|
|
|
android:layout_width="30dp"
|
|
|
|
android:layout_height="30dp"
|
2023-04-11 16:04:24 +00:00
|
|
|
android:layout_gravity="center"
|
|
|
|
android:contentDescription="@string/go_back_img_des"
|
|
|
|
android:src="@drawable/ic_baseline_arrow_back_24"
|
|
|
|
app:tint="@android:color/white" />
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/player_go_back"
|
2022-01-18 00:24:23 +00:00
|
|
|
android:layout_width="70dp"
|
|
|
|
android:layout_height="70dp"
|
2023-04-11 16:04:24 +00:00
|
|
|
android:layout_gravity="center"
|
|
|
|
android:background="@drawable/video_tap_button_always_white"
|
2022-01-18 00:24:23 +00:00
|
|
|
android:clickable="true"
|
2023-04-11 16:04:24 +00:00
|
|
|
android:contentDescription="@string/go_back_img_des"
|
2023-07-25 19:15:10 +00:00
|
|
|
android:focusable="true"
|
|
|
|
android:tag="@string/tv_no_focus_tag" />
|
2023-04-11 16:04:24 +00:00
|
|
|
</FrameLayout>
|
2022-01-18 00:24:23 +00:00
|
|
|
</FrameLayout>
|
|
|
|
|
2023-07-17 19:47:27 +00:00
|
|
|
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
|
|
android:id="@+id/player_center_menu"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="100dp"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:gravity="center"
|
|
|
|
android:layoutDirection="ltr"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:visibility="gone"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
|
app:layout_constraintRight_toRightOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
tools:visibility="visible">
|
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/player_rew_holder"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical|start"
|
2023-07-25 19:15:10 +00:00
|
|
|
android:visibility="gone"
|
2023-07-17 19:47:27 +00:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
|
app:layout_constraintRight_toLeftOf="@id/player_ffwd_holder"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
app:layout_constraintWidth_percent="0.5">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/exo_rew_text"
|
|
|
|
android:layout_width="200dp"
|
|
|
|
android:layout_height="40dp"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
|
|
|
|
android:gravity="center"
|
|
|
|
android:textColor="@color/white"
|
|
|
|
android:textSize="19sp"
|
|
|
|
|
|
|
|
android:textStyle="bold"
|
|
|
|
tools:text="10" />
|
|
|
|
|
|
|
|
<ImageButton
|
|
|
|
android:id="@id/exo_rew"
|
|
|
|
android:layout_width="70dp"
|
|
|
|
android:layout_height="70dp"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
|
|
|
|
android:background="@drawable/video_tap_button_skip"
|
|
|
|
android:nextFocusLeft="@id/exo_rew"
|
|
|
|
android:nextFocusUp="@id/player_go_back"
|
2023-07-25 19:15:10 +00:00
|
|
|
android:nextFocusDown="@id/player_pause_play"
|
2023-07-17 19:47:27 +00:00
|
|
|
android:padding="10dp"
|
|
|
|
android:scaleType="fitCenter"
|
|
|
|
android:scaleX="-1"
|
|
|
|
android:src="@drawable/netflix_skip_forward"
|
|
|
|
android:tintMode="src_in"
|
|
|
|
app:tint="@color/white"
|
|
|
|
tools:ignore="ContentDescription" />
|
|
|
|
</FrameLayout>
|
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/player_ffwd_holder"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical|end"
|
2023-07-25 19:15:10 +00:00
|
|
|
android:visibility="gone"
|
2023-07-17 19:47:27 +00:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintLeft_toRightOf="@id/player_rew_holder"
|
|
|
|
app:layout_constraintRight_toRightOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
app:layout_constraintWidth_percent="0.5">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/exo_ffwd_text"
|
|
|
|
android:layout_width="200dp"
|
|
|
|
android:layout_height="40dp"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:gravity="center"
|
|
|
|
android:textColor="@color/white"
|
|
|
|
android:textSize="19sp"
|
|
|
|
android:textStyle="bold"
|
|
|
|
tools:text="10" />
|
|
|
|
|
|
|
|
<ImageButton
|
|
|
|
android:id="@id/exo_ffwd"
|
|
|
|
android:layout_width="70dp"
|
|
|
|
android:layout_height="70dp"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
|
|
|
|
android:background="@drawable/video_tap_button_skip"
|
|
|
|
android:nextFocusRight="@id/exo_rew"
|
|
|
|
android:nextFocusUp="@id/player_go_back"
|
2023-07-25 19:15:10 +00:00
|
|
|
android:nextFocusDown="@id/player_pause_play"
|
2023-07-17 19:47:27 +00:00
|
|
|
android:padding="10dp"
|
|
|
|
android:scaleType="fitCenter"
|
|
|
|
android:src="@drawable/netflix_skip_forward"
|
|
|
|
android:tintMode="src_in"
|
|
|
|
app:tint="@color/white"
|
|
|
|
tools:ignore="ContentDescription" />
|
|
|
|
</FrameLayout>
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
|
2023-04-11 16:04:24 +00:00
|
|
|
<!--use for thinner app:trackThickness="3dp" com.google.android.material.progressindicator.CircularProgressIndicator-->
|
|
|
|
<ProgressBar
|
|
|
|
android:id="@+id/player_buffering"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
2022-01-18 00:24:23 +00:00
|
|
|
|
2023-04-11 16:04:24 +00:00
|
|
|
android:clickable="false"
|
|
|
|
android:focusable="false"
|
|
|
|
android:focusableInTouchMode="false"
|
2022-01-18 00:24:23 +00:00
|
|
|
|
2023-04-11 16:04:24 +00:00
|
|
|
android:indeterminate="true"
|
|
|
|
android:visibility="gone"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
|
app:layout_constraintRight_toRightOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
tools:visibility="visible" />
|
2022-01-18 00:24:23 +00:00
|
|
|
|
2023-04-11 16:04:24 +00:00
|
|
|
<LinearLayout
|
2022-08-31 19:58:26 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2023-04-11 16:04:24 +00:00
|
|
|
android:layout_gravity="bottom"
|
|
|
|
android:layout_marginBottom="20dp"
|
|
|
|
android:gravity="center"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:paddingTop="4dp"
|
|
|
|
android:visibility="gone"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent">
|
|
|
|
|
|
|
|
<ImageButton
|
|
|
|
android:id="@id/exo_prev"
|
|
|
|
style="@style/ExoMediaButton.Previous"
|
|
|
|
android:tintMode="src_in"
|
|
|
|
app:tint="?attr/colorPrimaryDark"
|
|
|
|
tools:ignore="ContentDescription" />
|
2022-01-18 00:24:23 +00:00
|
|
|
|
|
|
|
|
2023-04-11 16:04:24 +00:00
|
|
|
<ImageButton
|
|
|
|
android:id="@id/exo_repeat_toggle"
|
|
|
|
style="@style/ExoMediaButton"
|
|
|
|
android:tintMode="src_in"
|
|
|
|
app:tint="?attr/colorPrimaryDark"
|
|
|
|
tools:ignore="ContentDescription" />
|
2022-01-29 18:57:19 +00:00
|
|
|
|
2023-04-11 16:04:24 +00:00
|
|
|
|
|
|
|
<ImageButton
|
|
|
|
android:id="@id/exo_next"
|
|
|
|
style="@style/ExoMediaButton.Next"
|
|
|
|
android:tintMode="src_in"
|
|
|
|
app:tint="?attr/colorPrimaryDark"
|
2022-08-31 19:58:26 +00:00
|
|
|
tools:ignore="ContentDescription" />
|
2022-01-18 00:24:23 +00:00
|
|
|
|
2023-04-11 16:04:24 +00:00
|
|
|
<ImageButton
|
|
|
|
android:id="@id/exo_vr"
|
|
|
|
style="@style/ExoMediaButton.VR"
|
|
|
|
android:tintMode="src_in"
|
|
|
|
app:tint="?attr/colorPrimaryDark"
|
|
|
|
tools:ignore="ContentDescription" />
|
|
|
|
|
|
|
|
<ImageButton
|
|
|
|
android:id="@id/exo_play"
|
2022-08-31 19:58:26 +00:00
|
|
|
android:layout_width="0dp"
|
2023-04-11 16:04:24 +00:00
|
|
|
android:layout_height="0dp"
|
|
|
|
android:tintMode="src_in"
|
|
|
|
app:tint="?attr/colorPrimaryDark"
|
|
|
|
tools:ignore="ContentDescription" />
|
2022-01-18 00:24:23 +00:00
|
|
|
|
2023-04-11 16:04:24 +00:00
|
|
|
<ImageButton
|
|
|
|
android:id="@id/exo_pause"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:tintMode="src_in"
|
|
|
|
app:tint="?attr/colorPrimaryDark"
|
|
|
|
tools:ignore="ContentDescription" />
|
2022-01-18 00:24:23 +00:00
|
|
|
</LinearLayout>
|
|
|
|
|
2023-04-11 16:04:24 +00:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/bottom_player_bar"
|
|
|
|
android:layout_width="match_parent"
|
2022-08-31 19:58:26 +00:00
|
|
|
android:layout_height="wrap_content"
|
2023-04-11 16:04:24 +00:00
|
|
|
android:layout_marginStart="64dp"
|
|
|
|
android:layout_marginEnd="64dp"
|
|
|
|
android:layout_marginBottom="10dp"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:orientation="vertical"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent">
|
2022-01-18 00:24:23 +00:00
|
|
|
|
2023-10-02 15:44:06 +00:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
2023-04-11 16:04:24 +00:00
|
|
|
android:id="@+id/player_video_bar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layoutDirection="ltr"
|
2022-08-31 19:58:26 +00:00
|
|
|
android:orientation="horizontal">
|
2023-04-11 16:04:24 +00:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/player_pause_play"
|
2023-07-25 19:15:10 +00:00
|
|
|
|
2023-04-11 16:04:24 +00:00
|
|
|
android:layout_width="30dp"
|
|
|
|
android:layout_height="30dp"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:layout_marginStart="20dp"
|
|
|
|
android:background="@drawable/video_tap_button"
|
|
|
|
android:focusable="true"
|
|
|
|
android:focusableInTouchMode="true"
|
2023-07-25 19:15:10 +00:00
|
|
|
android:nextFocusUp="@id/skip_chapter_button"
|
|
|
|
android:nextFocusDown="@id/player_skip_op"
|
2023-04-11 16:04:24 +00:00
|
|
|
android:src="@drawable/netflix_pause"
|
2023-07-25 19:15:10 +00:00
|
|
|
|
|
|
|
android:tag="@string/tv_no_focus_tag"
|
2023-04-11 16:04:24 +00:00
|
|
|
app:tint="@color/player_button_tv"
|
2023-10-02 15:44:06 +00:00
|
|
|
tools:ignore="ContentDescription"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent" />
|
2023-04-11 16:04:24 +00:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@id/exo_position"
|
|
|
|
android:layout_width="wrap_content"
|
2023-10-02 15:44:06 +00:00
|
|
|
android:layout_height="30dp"
|
2024-03-09 14:24:38 +00:00
|
|
|
android:gravity="center"
|
2023-04-11 16:04:24 +00:00
|
|
|
android:includeFontPadding="false"
|
|
|
|
android:minWidth="50dp"
|
|
|
|
android:textColor="@android:color/white"
|
|
|
|
android:textSize="14sp"
|
|
|
|
android:textStyle="normal"
|
2023-10-02 15:44:06 +00:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
2024-03-09 14:24:38 +00:00
|
|
|
app:layout_constraintStart_toEndOf="@id/player_pause_play"
|
2023-04-11 16:04:24 +00:00
|
|
|
tools:text="15:30" />
|
2023-10-02 15:44:06 +00:00
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/previewFrameLayout"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_marginStart="16dp"
|
|
|
|
android:layout_marginEnd="16dp"
|
|
|
|
android:layout_marginBottom="16dp"
|
|
|
|
android:background="@drawable/video_frame"
|
|
|
|
android:visibility="invisible"
|
|
|
|
app:layout_constraintBottom_toTopOf="@+id/exo_progress"
|
|
|
|
app:layout_constraintDimensionRatio="16:9"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintHorizontal_bias="0.0"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintWidth_default="percent"
|
|
|
|
app:layout_constraintWidth_percent="0.25"
|
|
|
|
tools:visibility="visible">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/previewImageView"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_margin="@dimen/video_frame_width"
|
|
|
|
android:importantForAccessibility="no"
|
|
|
|
android:scaleType="centerCrop" />
|
|
|
|
</FrameLayout>
|
|
|
|
|
|
|
|
<com.github.rubensousa.previewseekbar.media3.PreviewTimeBar
|
2023-04-11 16:04:24 +00:00
|
|
|
android:id="@id/exo_progress"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="30dp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
app:bar_height="2dp"
|
2023-10-02 15:44:06 +00:00
|
|
|
app:layout_constraintBottom_toBottomOf="@id/exo_position"
|
|
|
|
app:layout_constraintEnd_toStartOf="@id/exo_duration"
|
|
|
|
app:layout_constraintStart_toEndOf="@+id/exo_position"
|
2023-04-11 16:04:24 +00:00
|
|
|
app:played_color="?attr/colorPrimary"
|
2023-10-02 15:44:06 +00:00
|
|
|
|
2023-04-11 16:04:24 +00:00
|
|
|
app:scrubber_color="?attr/colorPrimary"
|
|
|
|
app:scrubber_dragged_size="26dp"
|
|
|
|
app:scrubber_enabled_size="24dp"
|
|
|
|
app:unplayed_color="@color/videoProgress" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@id/exo_duration"
|
|
|
|
android:layout_width="wrap_content"
|
2023-10-02 15:44:06 +00:00
|
|
|
android:layout_height="30dp"
|
|
|
|
android:layout_gravity="center|center_vertical"
|
|
|
|
|
2023-04-11 16:04:24 +00:00
|
|
|
android:layout_marginEnd="20dp"
|
|
|
|
android:includeFontPadding="false"
|
|
|
|
android:minWidth="50dp"
|
|
|
|
android:paddingLeft="4dp"
|
|
|
|
android:paddingRight="4dp"
|
|
|
|
android:textColor="@android:color/white"
|
|
|
|
android:textSize="14sp"
|
|
|
|
android:textStyle="normal"
|
2023-10-02 15:44:06 +00:00
|
|
|
app:layout_constraintBaseline_toBaselineOf="@id/exo_position"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
2023-04-11 16:04:24 +00:00
|
|
|
tools:text="23:20" />
|
2024-01-21 19:11:51 +00:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/time_left"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="30dp"
|
|
|
|
android:layout_gravity="center|center_vertical"
|
|
|
|
|
|
|
|
android:layout_marginEnd="20dp"
|
|
|
|
android:includeFontPadding="false"
|
|
|
|
android:minWidth="50dp"
|
|
|
|
android:paddingLeft="4dp"
|
|
|
|
android:paddingRight="4dp"
|
|
|
|
android:textColor="@android:color/white"
|
|
|
|
android:textSize="14sp"
|
|
|
|
android:textStyle="normal"
|
|
|
|
app:layout_constraintBaseline_toBaselineOf="@id/exo_position"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
tools:text="-23:20"
|
|
|
|
android:visibility="gone"/>
|
2023-10-02 15:44:06 +00:00
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
2023-04-11 16:04:24 +00:00
|
|
|
|
2022-01-18 00:24:23 +00:00
|
|
|
|
2023-04-11 16:04:24 +00:00
|
|
|
<HorizontalScrollView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/player_lock_holder"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
2023-07-17 19:47:27 +00:00
|
|
|
<FrameLayout
|
|
|
|
android:layout_width="0dp"
|
2023-07-25 19:15:10 +00:00
|
|
|
android:layout_height="0dp"
|
|
|
|
android:visibility="gone">
|
|
|
|
|
2023-07-17 19:47:27 +00:00
|
|
|
<com.google.android.material.button.MaterialButton
|
|
|
|
android:id="@+id/player_lock"
|
|
|
|
style="@style/VideoButtonTV"
|
|
|
|
android:nextFocusLeft="@id/player_skip_episode"
|
|
|
|
|
|
|
|
android:nextFocusRight="@id/player_resize_btt"
|
|
|
|
android:nextFocusUp="@id/player_pause_play"
|
|
|
|
android:text="@string/video_lock"
|
|
|
|
android:visibility="gone"
|
|
|
|
app:icon="@drawable/video_locked" />
|
|
|
|
</FrameLayout>
|
|
|
|
|
2023-12-19 14:20:58 +00:00
|
|
|
<com.google.android.material.button.MaterialButton
|
|
|
|
android:id="@+id/player_rotate_btt"
|
|
|
|
style="@style/VideoButton"
|
|
|
|
android:visibility="gone"/>
|
|
|
|
|
2023-07-25 19:15:10 +00:00
|
|
|
<com.google.android.material.button.MaterialButton
|
|
|
|
android:id="@+id/player_skip_op"
|
|
|
|
style="@style/VideoButtonTV"
|
|
|
|
android:nextFocusLeft="@id/player_pause_play"
|
|
|
|
android:nextFocusRight="@id/player_skip_episode"
|
|
|
|
android:nextFocusUp="@id/player_pause_play"
|
|
|
|
android:nextFocusDown="@id/player_skip_episode"
|
|
|
|
android:text="@string/video_skip_op"
|
|
|
|
app:icon="@drawable/ic_baseline_fast_forward_24" />
|
|
|
|
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
|
|
android:id="@+id/player_skip_episode"
|
|
|
|
style="@style/VideoButtonTV"
|
|
|
|
android:nextFocusLeft="@id/player_skip_op"
|
|
|
|
|
|
|
|
android:nextFocusRight="@id/player_resize_btt"
|
|
|
|
android:nextFocusUp="@id/player_pause_play"
|
|
|
|
android:nextFocusDown="@id/player_resize_btt"
|
|
|
|
android:text="@string/next_episode"
|
|
|
|
app:icon="@drawable/ic_baseline_skip_next_24" />
|
|
|
|
|
2023-04-11 16:04:24 +00:00
|
|
|
<com.google.android.material.button.MaterialButton
|
|
|
|
android:id="@+id/player_resize_btt"
|
|
|
|
style="@style/VideoButtonTV"
|
2023-07-25 19:15:10 +00:00
|
|
|
android:nextFocusLeft="@id/player_skip_episode"
|
|
|
|
|
2023-04-11 16:04:24 +00:00
|
|
|
android:nextFocusRight="@id/player_speed_btt"
|
|
|
|
android:nextFocusUp="@id/player_pause_play"
|
2023-07-25 19:15:10 +00:00
|
|
|
android:nextFocusDown="@id/player_speed_btt"
|
2023-04-11 16:04:24 +00:00
|
|
|
android:text="@string/video_aspect_ratio_resize"
|
|
|
|
app:icon="@drawable/ic_baseline_aspect_ratio_24" />
|
|
|
|
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
|
|
android:id="@+id/player_speed_btt"
|
|
|
|
style="@style/VideoButtonTV"
|
|
|
|
android:nextFocusLeft="@id/player_resize_btt"
|
2023-07-25 19:15:10 +00:00
|
|
|
|
2023-04-11 16:04:24 +00:00
|
|
|
android:nextFocusRight="@id/player_subtitle_offset_btt"
|
|
|
|
android:nextFocusUp="@id/player_pause_play"
|
2023-07-25 19:15:10 +00:00
|
|
|
android:nextFocusDown="@id/player_subtitle_offset_btt"
|
2023-04-11 16:04:24 +00:00
|
|
|
app:icon="@drawable/ic_baseline_speed_24"
|
|
|
|
tools:text="Speed" />
|
|
|
|
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
|
|
android:id="@+id/player_subtitle_offset_btt"
|
|
|
|
style="@style/VideoButtonTV"
|
|
|
|
android:nextFocusLeft="@id/player_speed_btt"
|
|
|
|
android:nextFocusRight="@id/player_sources_btt"
|
2023-07-25 19:15:10 +00:00
|
|
|
android:nextFocusUp="@id/player_pause_play"
|
|
|
|
android:nextFocusDown="@id/player_sources_btt"
|
2023-04-11 16:04:24 +00:00
|
|
|
android:text="@string/subtitle_offset"
|
|
|
|
|
|
|
|
android:visibility="gone"
|
|
|
|
app:icon="@drawable/ic_outline_subtitles_24"
|
|
|
|
tools:visibility="visible" />
|
|
|
|
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
|
|
android:id="@+id/player_sources_btt"
|
|
|
|
style="@style/VideoButtonTV"
|
|
|
|
android:nextFocusLeft="@id/player_subtitle_offset_btt"
|
|
|
|
android:nextFocusRight="@id/player_tracks_btt"
|
|
|
|
android:nextFocusUp="@id/player_pause_play"
|
2023-07-25 19:15:10 +00:00
|
|
|
android:nextFocusDown="@id/player_tracks_btt"
|
|
|
|
|
2023-04-11 16:04:24 +00:00
|
|
|
android:text="@string/video_source"
|
|
|
|
app:icon="@drawable/ic_baseline_playlist_play_24" />
|
|
|
|
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
|
|
android:id="@+id/player_tracks_btt"
|
|
|
|
style="@style/VideoButtonTV"
|
|
|
|
android:nextFocusLeft="@id/player_sources_btt"
|
|
|
|
android:nextFocusRight="@id/player_skip_op"
|
|
|
|
android:nextFocusUp="@id/player_pause_play"
|
|
|
|
android:text="@string/tracks"
|
|
|
|
app:icon="@drawable/ic_baseline_playlist_play_24" />
|
|
|
|
</LinearLayout>
|
|
|
|
</HorizontalScrollView>
|
|
|
|
</LinearLayout>
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
</FrameLayout>
|
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/subtitle_holder"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
</FrameLayout>
|
2022-01-18 00:24:23 +00:00
|
|
|
</FrameLayout>
|