<?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:tag="layout/activity_tv_player_0"
    android:background="@color/black"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <androidx.media3.ui.PlayerView
        android:id="@+id/playerView"
        android:focusable="false"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:buffered_color="@color/color_text_gray"
        app:controller_layout_id="@layout/fragment_tv_player_control"
        app:resize_mode="fit"
        app:show_buffering="when_playing"
        app:unplayed_color="@color/color_text_gray"/>
    <FrameLayout
        android:id="@+id/container"
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>
    <ProgressBar
        android:layout_gravity="center"
        android:id="@+id/progressBar"
        android:focusable="false"
        android:focusableInTouchMode="false"
        android:visibility="gone"
        android:clickable="false"
        android:layout_width="@dimen/dp_150"
        android:layout_height="@dimen/dp_150"
        android:progressTint="@color/colorAccent"
        android:indeterminateTint="@color/colorAccent"/>
</FrameLayout>
