2017-03-27 06:08:16 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2017-08-29 02:38:37 +02:00
|
|
|
<RelativeLayout
|
2017-03-09 05:44:00 +01:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-03-27 06:08:16 +02:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2019-12-29 22:15:01 +01:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2017-03-09 05:44:00 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2019-12-29 22:15:01 +01:00
|
|
|
android:background="@color/black"
|
2017-05-14 05:32:28 +02:00
|
|
|
android:gravity="center">
|
2017-03-09 05:44:00 +01:00
|
|
|
|
2020-02-05 06:59:30 +01:00
|
|
|
<org.schabi.newpipe.views.ExpandableSurfaceView
|
|
|
|
android:id="@+id/surfaceView"
|
2017-03-09 05:44:00 +01:00
|
|
|
android:layout_width="match_parent"
|
2017-03-27 06:08:16 +02:00
|
|
|
android:layout_height="match_parent"
|
2020-02-25 00:15:22 +01:00
|
|
|
android:layout_centerInParent="true"/>
|
2017-03-27 06:08:16 +02:00
|
|
|
|
2020-02-05 06:59:30 +01:00
|
|
|
<View
|
|
|
|
android:id="@+id/surfaceForeground"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:background="@android:color/black"
|
|
|
|
android:layout_alignBottom="@+id/surfaceView"/>
|
2017-03-27 06:08:16 +02:00
|
|
|
|
2018-02-03 23:39:03 +01:00
|
|
|
<com.google.android.exoplayer2.ui.SubtitleView
|
|
|
|
android:id="@+id/subtitleView"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_centerInParent="true"
|
|
|
|
android:layout_gravity="center"/>
|
2017-03-27 06:08:16 +02:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/endScreen"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:visibility="gone"
|
|
|
|
tools:background="@android:color/white"
|
|
|
|
tools:ignore="ContentDescription"
|
|
|
|
tools:visibility="visible"/>
|
|
|
|
|
2017-10-13 05:47:12 +02:00
|
|
|
<RelativeLayout
|
2017-10-23 03:58:01 +02:00
|
|
|
android:id="@+id/playQueuePanel"
|
2017-10-13 05:47:12 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2019-12-31 03:07:07 +01:00
|
|
|
android:visibility="gone"
|
2017-10-31 04:58:02 +01:00
|
|
|
android:background="?attr/queue_background_color"
|
2017-10-13 05:47:12 +02:00
|
|
|
tools:visibility="visible">
|
|
|
|
|
2017-10-23 03:58:01 +02:00
|
|
|
<RelativeLayout
|
2017-10-13 05:47:12 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="60dp"
|
2017-10-23 03:58:01 +02:00
|
|
|
android:id="@+id/playQueueControl">
|
|
|
|
|
|
|
|
<ImageButton
|
|
|
|
android:id="@+id/playQueueClose"
|
2017-10-25 06:47:14 +02:00
|
|
|
android:layout_width="50dp"
|
|
|
|
android:layout_height="50dp"
|
2017-10-23 03:58:01 +02:00
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:layout_alignParentEnd="true"
|
|
|
|
android:layout_marginEnd="40dp"
|
2017-10-25 06:47:14 +02:00
|
|
|
android:padding="10dp"
|
2017-10-23 03:58:01 +02:00
|
|
|
android:clickable="true"
|
|
|
|
android:focusable="true"
|
|
|
|
android:scaleType="fitXY"
|
2017-10-31 04:58:02 +01:00
|
|
|
android:tint="?attr/colorAccent"
|
2017-10-23 03:58:01 +02:00
|
|
|
android:src="@drawable/ic_close_white_24dp"
|
|
|
|
android:background="?android:selectableItemBackground"
|
|
|
|
tools:ignore="ContentDescription"/>
|
|
|
|
|
|
|
|
<ImageButton
|
|
|
|
android:id="@+id/repeatButton"
|
2017-10-25 06:47:14 +02:00
|
|
|
android:layout_width="50dp"
|
|
|
|
android:layout_height="50dp"
|
2017-10-23 03:58:01 +02:00
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_alignParentStart="true"
|
|
|
|
android:layout_marginLeft="40dp"
|
|
|
|
android:layout_marginStart="40dp"
|
2017-10-25 06:47:14 +02:00
|
|
|
android:padding="10dp"
|
2017-10-23 03:58:01 +02:00
|
|
|
android:clickable="true"
|
|
|
|
android:focusable="true"
|
|
|
|
android:scaleType="fitXY"
|
2017-10-31 04:58:02 +01:00
|
|
|
android:tint="?attr/colorAccent"
|
2017-10-23 03:58:01 +02:00
|
|
|
android:src="@drawable/exo_controls_repeat_off"
|
|
|
|
android:background="?android:selectableItemBackground"
|
|
|
|
tools:ignore="ContentDescription,RtlHardcoded"/>
|
|
|
|
|
2020-07-13 03:17:21 +02:00
|
|
|
<androidx.appcompat.widget.AppCompatImageButton
|
2017-10-23 03:58:01 +02:00
|
|
|
android:id="@+id/shuffleButton"
|
2017-10-25 06:47:14 +02:00
|
|
|
android:layout_width="50dp"
|
|
|
|
android:layout_height="50dp"
|
2017-10-23 03:58:01 +02:00
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:layout_toRightOf="@id/repeatButton"
|
2017-10-25 06:47:14 +02:00
|
|
|
android:padding="10dp"
|
2017-10-23 03:58:01 +02:00
|
|
|
android:clickable="true"
|
|
|
|
android:focusable="true"
|
|
|
|
android:scaleType="fitXY"
|
2017-10-31 04:58:02 +01:00
|
|
|
android:tint="?attr/colorAccent"
|
2020-03-25 16:23:47 +01:00
|
|
|
app:srcCompat="@drawable/ic_shuffle_white_24dp"
|
2017-10-23 03:58:01 +02:00
|
|
|
android:background="?android:selectableItemBackground"
|
|
|
|
tools:ignore="ContentDescription,RtlHardcoded"/>
|
|
|
|
</RelativeLayout>
|
|
|
|
|
2017-10-13 05:47:12 +02:00
|
|
|
|
2019-10-04 14:59:08 +02:00
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
2017-10-23 03:58:01 +02:00
|
|
|
android:id="@+id/playQueue"
|
2017-10-13 05:47:12 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2017-10-23 03:58:01 +02:00
|
|
|
android:layout_below="@id/playQueueControl"
|
2017-10-13 05:47:12 +02:00
|
|
|
android:scrollbars="vertical"
|
2019-12-29 22:15:01 +01:00
|
|
|
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
|
2017-10-13 05:47:12 +02:00
|
|
|
tools:listitem="@layout/play_queue_item"/>
|
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
2017-03-27 06:08:16 +02:00
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/playbackControlRoot"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2018-04-08 01:40:38 +02:00
|
|
|
android:background="@color/video_overlay_color"
|
2017-03-27 06:08:16 +02:00
|
|
|
android:visibility="gone"
|
|
|
|
tools:visibility="visible">
|
|
|
|
|
2020-01-08 17:16:50 +01:00
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="30dp"
|
2020-07-13 03:17:21 +02:00
|
|
|
android:background="@drawable/player_controls_top_background"
|
2020-01-08 17:16:50 +01:00
|
|
|
android:layout_alignParentTop="true" />
|
|
|
|
|
2020-02-25 00:15:22 +01:00
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="30dp"
|
2020-07-13 03:17:21 +02:00
|
|
|
android:background="@drawable/player_controls_background"
|
2020-02-25 00:15:22 +01:00
|
|
|
android:layout_alignParentBottom="true" />
|
|
|
|
|
2019-12-29 22:15:01 +01:00
|
|
|
<!-- All top controls in this layout -->
|
2017-03-27 06:08:16 +02:00
|
|
|
<RelativeLayout
|
2018-03-04 05:58:53 +01:00
|
|
|
android:id="@+id/playbackWindowRoot"
|
2017-03-27 06:08:16 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:fitsSystemWindows="true">
|
|
|
|
|
2019-12-29 22:15:01 +01:00
|
|
|
<LinearLayout
|
2017-03-27 06:08:16 +02:00
|
|
|
android:id="@+id/topControls"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentTop="true"
|
2019-12-29 22:15:01 +01:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:gravity="top"
|
2020-02-05 06:59:30 +01:00
|
|
|
android:paddingTop="@dimen/player_main_top_padding"
|
|
|
|
android:paddingStart="@dimen/player_main_controls_padding"
|
|
|
|
android:paddingEnd="@dimen/player_main_controls_padding"
|
2020-01-06 11:39:01 +01:00
|
|
|
android:baselineAligned="false">
|
2019-12-29 22:15:01 +01:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/primaryControls"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2020-07-13 22:28:39 +02:00
|
|
|
android:minHeight="45dp"
|
2019-12-29 22:15:01 +01:00
|
|
|
android:baselineAligned="false"
|
2017-03-27 06:08:16 +02:00
|
|
|
android:gravity="top"
|
|
|
|
tools:ignore="RtlHardcoded">
|
|
|
|
|
2020-01-09 16:28:06 +01:00
|
|
|
<ImageButton
|
|
|
|
android:id="@+id/playerCloseButton"
|
|
|
|
android:layout_width="36dp"
|
|
|
|
android:layout_height="36dp"
|
2020-02-05 06:59:30 +01:00
|
|
|
android:padding="@dimen/player_main_buttons_padding"
|
2020-01-09 16:28:06 +01:00
|
|
|
android:layout_marginEnd="8dp"
|
|
|
|
android:clickable="true"
|
|
|
|
android:focusable="true"
|
|
|
|
android:scaleType="fitXY"
|
2020-07-13 03:17:21 +02:00
|
|
|
android:src="?attr/ic_close"
|
2020-01-09 16:28:06 +01:00
|
|
|
android:background="?attr/selectableItemBackgroundBorderless"
|
|
|
|
tools:ignore="ContentDescription,RtlHardcoded"
|
|
|
|
android:visibility="gone" />
|
|
|
|
|
2017-03-27 06:08:16 +02:00
|
|
|
<LinearLayout
|
2018-02-03 23:39:03 +01:00
|
|
|
android:id="@+id/metadataView"
|
2019-12-29 22:15:01 +01:00
|
|
|
android:layout_width="0dp"
|
2017-03-27 06:08:16 +02:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="top"
|
|
|
|
android:orientation="vertical"
|
2020-02-05 06:59:30 +01:00
|
|
|
android:layout_marginTop="6dp"
|
|
|
|
android:layout_marginRight="8dp"
|
2019-12-29 22:15:01 +01:00
|
|
|
tools:ignore="RtlHardcoded"
|
|
|
|
android:layout_weight="1">
|
2017-03-27 06:08:16 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/titleTextView"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2017-10-28 21:57:09 +02:00
|
|
|
android:ellipsize="marquee"
|
|
|
|
android:fadingEdge="horizontal"
|
|
|
|
android:marqueeRepeatLimit="marquee_forever"
|
|
|
|
android:scrollHorizontally="true"
|
|
|
|
android:singleLine="true"
|
2017-03-27 06:08:16 +02:00
|
|
|
android:textColor="@android:color/white"
|
|
|
|
android:textSize="15sp"
|
|
|
|
android:textStyle="bold"
|
2017-10-28 21:57:09 +02:00
|
|
|
android:clickable="true"
|
|
|
|
android:focusable="true"
|
2017-03-27 06:08:16 +02:00
|
|
|
tools:ignore="RtlHardcoded"
|
|
|
|
tools:text="The Video Title LONG very LONG"/>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/channelTextView"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2017-10-28 21:57:09 +02:00
|
|
|
android:ellipsize="marquee"
|
|
|
|
android:fadingEdge="horizontal"
|
|
|
|
android:marqueeRepeatLimit="marquee_forever"
|
|
|
|
android:scrollHorizontally="true"
|
|
|
|
android:singleLine="true"
|
2017-03-27 06:08:16 +02:00
|
|
|
android:textColor="@android:color/white"
|
|
|
|
android:textSize="12sp"
|
2017-10-28 21:57:09 +02:00
|
|
|
android:clickable="true"
|
|
|
|
android:focusable="true"
|
2017-03-27 06:08:16 +02:00
|
|
|
tools:text="The Video Artist LONG very LONG very Long"/>
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/qualityTextView"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="35dp"
|
2020-07-14 20:52:55 +02:00
|
|
|
android:minWidth="0dp"
|
2020-02-05 06:59:30 +01:00
|
|
|
android:padding="@dimen/player_main_buttons_padding"
|
2019-12-31 17:06:39 +01:00
|
|
|
android:layout_marginEnd="8dp"
|
2017-03-27 06:08:16 +02:00
|
|
|
android:gravity="center"
|
|
|
|
android:text="720p"
|
|
|
|
android:textColor="@android:color/white"
|
|
|
|
android:textStyle="bold"
|
2018-02-07 00:07:49 +01:00
|
|
|
android:background="?attr/selectableItemBackground"
|
2019-12-29 22:15:01 +01:00
|
|
|
android:visibility="visible"
|
2017-03-27 06:08:16 +02:00
|
|
|
tools:ignore="HardcodedText,RtlHardcoded"/>
|
|
|
|
|
2017-06-26 04:41:52 +02:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/playbackSpeed"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2020-02-05 06:59:30 +01:00
|
|
|
android:padding="@dimen/player_main_buttons_padding"
|
2019-12-31 17:06:39 +01:00
|
|
|
android:layout_marginEnd="8dp"
|
2017-06-26 04:41:52 +02:00
|
|
|
android:gravity="center"
|
|
|
|
android:minHeight="35dp"
|
|
|
|
android:textColor="@android:color/white"
|
|
|
|
android:textStyle="bold"
|
2018-02-07 00:07:49 +01:00
|
|
|
android:background="?attr/selectableItemBackground"
|
2017-06-26 04:41:52 +02:00
|
|
|
tools:ignore="RtlHardcoded,RtlSymmetry"
|
2019-12-29 22:15:01 +01:00
|
|
|
tools:text="1x"/>
|
2017-06-26 04:41:52 +02:00
|
|
|
|
2020-07-13 03:17:21 +02:00
|
|
|
<androidx.appcompat.widget.AppCompatImageButton
|
2017-10-13 05:47:12 +02:00
|
|
|
android:id="@+id/queueButton"
|
|
|
|
android:layout_width="30dp"
|
|
|
|
android:layout_height="35dp"
|
2020-02-05 06:59:30 +01:00
|
|
|
android:padding="@dimen/player_main_buttons_padding"
|
2019-12-31 17:06:39 +01:00
|
|
|
android:layout_marginEnd="8dp"
|
2017-10-13 05:47:12 +02:00
|
|
|
android:clickable="true"
|
|
|
|
android:focusable="true"
|
|
|
|
android:scaleType="fitXY"
|
2020-03-25 16:23:47 +01:00
|
|
|
app:srcCompat="@drawable/ic_list_white_24dp"
|
2018-02-07 00:07:49 +01:00
|
|
|
android:background="?attr/selectableItemBackground"
|
2019-12-29 22:15:01 +01:00
|
|
|
tools:ignore="ContentDescription,RtlHardcoded"
|
|
|
|
android:visibility="gone"/>
|
2017-10-13 05:47:12 +02:00
|
|
|
|
2020-07-13 03:17:21 +02:00
|
|
|
<androidx.appcompat.widget.AppCompatImageButton
|
2017-11-09 11:29:02 +01:00
|
|
|
android:id="@+id/moreOptionsButton"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2020-02-05 06:59:30 +01:00
|
|
|
android:padding="@dimen/player_main_buttons_padding"
|
2017-03-27 06:08:16 +02:00
|
|
|
android:clickable="true"
|
2017-10-13 05:47:12 +02:00
|
|
|
android:focusable="true"
|
2017-03-27 06:08:16 +02:00
|
|
|
android:scaleType="fitXY"
|
2020-03-25 16:23:47 +01:00
|
|
|
app:srcCompat="@drawable/ic_expand_more_white_24dp"
|
2018-03-14 04:48:26 +01:00
|
|
|
android:background="?attr/selectableItemBackgroundBorderless"
|
2017-03-27 06:08:16 +02:00
|
|
|
tools:ignore="ContentDescription,RtlHardcoded"/>
|
2018-02-07 00:07:49 +01:00
|
|
|
|
2019-12-29 22:15:01 +01:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
2018-02-07 00:07:49 +01:00
|
|
|
android:id="@+id/secondaryControls"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="top"
|
2018-03-14 04:48:26 +01:00
|
|
|
android:visibility="invisible"
|
2018-02-07 00:07:49 +01:00
|
|
|
tools:ignore="RtlHardcoded"
|
|
|
|
tools:visibility="visible">
|
2017-03-27 06:08:16 +02:00
|
|
|
|
2018-02-03 23:39:03 +01:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/resizeTextView"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="35dp"
|
2020-02-05 06:59:30 +01:00
|
|
|
android:padding="@dimen/player_main_buttons_padding"
|
2019-12-31 17:06:39 +01:00
|
|
|
android:layout_marginEnd="8dp"
|
2018-02-03 23:39:03 +01:00
|
|
|
android:gravity="center"
|
|
|
|
android:minWidth="50dp"
|
|
|
|
android:textColor="@android:color/white"
|
|
|
|
android:textStyle="bold"
|
2018-02-07 00:07:49 +01:00
|
|
|
android:background="?attr/selectableItemBackground"
|
2018-02-03 23:39:03 +01:00
|
|
|
tools:ignore="HardcodedText,RtlHardcoded"
|
|
|
|
tools:text="FIT"/>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/captionTextView"
|
2018-02-07 22:11:19 +01:00
|
|
|
android:layout_width="wrap_content"
|
2018-02-03 23:39:03 +01:00
|
|
|
android:layout_height="wrap_content"
|
2020-02-05 06:59:30 +01:00
|
|
|
android:padding="@dimen/player_main_buttons_padding"
|
2019-12-31 17:06:39 +01:00
|
|
|
android:layout_marginEnd="8dp"
|
2018-02-07 22:11:19 +01:00
|
|
|
android:gravity="center|left"
|
2018-02-03 23:39:03 +01:00
|
|
|
android:minHeight="35dp"
|
2020-07-13 22:28:39 +02:00
|
|
|
android:maxWidth="100dp"
|
2020-01-06 11:39:01 +01:00
|
|
|
android:lines="1"
|
|
|
|
android:ellipsize="end"
|
2019-12-29 22:15:01 +01:00
|
|
|
android:minWidth="50dp"
|
2018-02-03 23:39:03 +01:00
|
|
|
android:textColor="@android:color/white"
|
|
|
|
android:textStyle="bold"
|
2018-02-07 00:07:49 +01:00
|
|
|
android:background="?attr/selectableItemBackground"
|
2018-02-07 22:11:19 +01:00
|
|
|
tools:ignore="RelativeOverlap,RtlHardcoded"
|
2019-12-29 22:15:01 +01:00
|
|
|
tools:text="English"/>
|
|
|
|
|
|
|
|
<Space
|
|
|
|
android:id="@+id/spaceBeforeButton"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_weight="3"/>
|
2018-02-07 00:07:49 +01:00
|
|
|
|
2020-07-13 03:17:21 +02:00
|
|
|
<androidx.appcompat.widget.AppCompatImageButton
|
2019-12-29 22:15:01 +01:00
|
|
|
android:id="@+id/playWithKodi"
|
2019-12-31 17:06:39 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="35dp"
|
2020-02-05 06:59:30 +01:00
|
|
|
android:padding="@dimen/player_main_buttons_padding"
|
2019-12-31 17:06:39 +01:00
|
|
|
android:layout_marginEnd="8dp"
|
2018-02-07 00:07:49 +01:00
|
|
|
android:clickable="true"
|
|
|
|
android:focusable="true"
|
|
|
|
android:scaleType="fitXY"
|
2020-03-25 16:23:47 +01:00
|
|
|
app:srcCompat="@drawable/ic_cast_white_24dp"
|
2019-04-06 20:21:32 +02:00
|
|
|
android:background="?attr/selectableItemBackground"
|
2019-12-29 22:15:01 +01:00
|
|
|
android:contentDescription="@string/play_with_kodi_title"
|
2019-04-06 20:21:32 +02:00
|
|
|
tools:ignore="RtlHardcoded"/>
|
|
|
|
|
2020-07-13 03:17:21 +02:00
|
|
|
<androidx.appcompat.widget.AppCompatImageButton
|
2019-12-29 22:15:01 +01:00
|
|
|
android:id="@+id/openInBrowser"
|
2019-12-31 17:06:39 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="35dp"
|
2020-02-05 06:59:30 +01:00
|
|
|
android:padding="@dimen/player_main_buttons_padding"
|
2019-12-31 17:06:39 +01:00
|
|
|
android:layout_marginEnd="8dp"
|
2019-04-06 20:21:32 +02:00
|
|
|
android:clickable="true"
|
2018-02-07 00:07:49 +01:00
|
|
|
android:focusable="true"
|
|
|
|
android:scaleType="fitXY"
|
2020-07-13 03:17:21 +02:00
|
|
|
app:srcCompat="@drawable/ic_language_white_24dp"
|
2018-02-07 00:07:49 +01:00
|
|
|
android:background="?attr/selectableItemBackground"
|
2019-12-29 22:15:01 +01:00
|
|
|
android:contentDescription="@string/open_in_browser"
|
2018-02-07 00:07:49 +01:00
|
|
|
tools:ignore="RtlHardcoded"/>
|
|
|
|
|
2020-07-13 03:17:21 +02:00
|
|
|
<androidx.appcompat.widget.AppCompatImageButton
|
2019-12-29 22:15:01 +01:00
|
|
|
android:id="@+id/share"
|
2019-12-31 17:06:39 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="35dp"
|
2020-02-05 06:59:30 +01:00
|
|
|
android:padding="@dimen/player_main_buttons_padding"
|
2020-07-13 03:17:21 +02:00
|
|
|
android:layout_marginEnd="8dp"
|
2018-02-07 00:07:49 +01:00
|
|
|
android:clickable="true"
|
|
|
|
android:focusable="true"
|
|
|
|
android:scaleType="fitXY"
|
2020-07-13 03:17:21 +02:00
|
|
|
app:srcCompat="@drawable/ic_share_white_24dp"
|
2018-02-07 00:07:49 +01:00
|
|
|
android:background="?attr/selectableItemBackground"
|
2019-12-29 22:15:01 +01:00
|
|
|
android:contentDescription="@string/share"
|
2018-02-07 00:07:49 +01:00
|
|
|
tools:ignore="RtlHardcoded"/>
|
|
|
|
|
2020-07-13 03:17:21 +02:00
|
|
|
<androidx.appcompat.widget.AppCompatImageButton
|
2020-02-23 21:28:40 +01:00
|
|
|
android:id="@+id/switchMute"
|
2020-07-13 03:17:21 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="37dp"
|
|
|
|
android:padding="@dimen/player_main_buttons_padding"
|
2020-02-23 21:28:40 +01:00
|
|
|
android:clickable="true"
|
|
|
|
android:focusable="true"
|
|
|
|
android:scaleType="fitXY"
|
2020-03-25 16:23:47 +01:00
|
|
|
app:srcCompat="@drawable/ic_volume_off_white_24dp"
|
2020-02-23 21:28:40 +01:00
|
|
|
android:background="?attr/selectableItemBackground"
|
2020-07-13 03:17:21 +02:00
|
|
|
android:contentDescription="@string/mute"
|
2020-03-21 16:58:53 +01:00
|
|
|
tools:ignore="RtlHardcoded" />
|
2020-02-23 21:28:40 +01:00
|
|
|
|
2019-12-29 22:15:01 +01:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
2020-07-13 03:17:21 +02:00
|
|
|
<androidx.appcompat.widget.AppCompatImageButton
|
2020-02-25 00:15:22 +01:00
|
|
|
android:id="@+id/fullScreenButton"
|
|
|
|
android:layout_width="40dp"
|
|
|
|
android:layout_height="40dp"
|
|
|
|
android:padding="@dimen/player_main_buttons_padding"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:background="?attr/selectableItemBackground"
|
|
|
|
android:clickable="true"
|
|
|
|
android:focusable="true"
|
|
|
|
android:scaleType="fitCenter"
|
2020-07-13 03:17:21 +02:00
|
|
|
app:srcCompat="@drawable/ic_fullscreen_white_24dp"
|
2020-02-25 00:15:22 +01:00
|
|
|
tools:ignore="ContentDescription,RtlHardcoded"
|
|
|
|
android:visibility="gone"
|
|
|
|
tools:visibility="visible"/>
|
2020-01-03 06:05:31 +01:00
|
|
|
|
2017-03-27 06:08:16 +02:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/bottomControls"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2020-02-25 00:15:22 +01:00
|
|
|
android:minHeight="40dp"
|
2017-03-27 06:08:16 +02:00
|
|
|
android:layout_alignParentBottom="true"
|
|
|
|
android:gravity="center"
|
|
|
|
android:orientation="horizontal"
|
2020-02-05 06:59:30 +01:00
|
|
|
android:paddingLeft="@dimen/player_main_controls_padding"
|
|
|
|
android:paddingRight="@dimen/player_main_controls_padding">
|
2017-03-27 06:08:16 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/playbackCurrentTime"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:gravity="center"
|
2019-12-29 22:15:01 +01:00
|
|
|
android:minHeight="30dp"
|
2017-03-27 06:08:16 +02:00
|
|
|
android:text="-:--:--"
|
|
|
|
android:textColor="@android:color/white"
|
|
|
|
tools:ignore="HardcodedText"
|
|
|
|
tools:text="1:06:29"/>
|
|
|
|
|
|
|
|
|
2019-10-04 14:59:08 +02:00
|
|
|
<androidx.appcompat.widget.AppCompatSeekBar
|
2017-03-27 06:08:16 +02:00
|
|
|
android:id="@+id/playbackSeekBar"
|
|
|
|
style="@style/Widget.AppCompat.SeekBar"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:paddingBottom="4dp"
|
|
|
|
android:paddingTop="8dp"
|
|
|
|
tools:progress="25"
|
|
|
|
tools:secondaryProgress="50"/>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/playbackEndTime"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:gravity="center"
|
|
|
|
android:text="-:--:--"
|
|
|
|
android:textColor="@android:color/white"
|
|
|
|
tools:ignore="HardcodedText"
|
|
|
|
tools:text="1:23:49"/>
|
2018-02-27 04:57:59 +01:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/playbackLiveSync"
|
|
|
|
android:layout_width="wrap_content"
|
2018-03-01 02:45:05 +01:00
|
|
|
android:layout_height="match_parent"
|
2018-03-14 04:25:22 +01:00
|
|
|
android:paddingLeft="4dp"
|
|
|
|
android:paddingRight="4dp"
|
2018-03-01 02:45:05 +01:00
|
|
|
android:gravity="center"
|
Multiple localization fixes
With the extractor PR, fixes title & description shown in the wrong language.
Fixed views / spectators counts possibly in the wrong language
Fixed live spectators not showing full count on detail page
Fixed LIVE shown on players, it shows translated instead
Fixed Videos string in search / three dots not available in Weblate
(because it was videos, but there already was a plural string named videos, in Weblate)
Subscriber count is always giving the short count.
We can't get exact number since this YouTube update: https://support.google.com/youtube/thread/6543166
But only short count (B, M, k), so showing full number, eg for 1.9M: 1,900,000, is wrong because the number could be 1,923,490 or 1,897,789…
Added a « sytem default » option to content language and country language selector.
It's the one selected by default (not en-GB anymore then), and correspond to the
language of the system / country of the system
By system I mean phone, tablet, TV…
Fixed russian showing - before time ago (eg 19hrs ago)
This is a workaround fix, I opened an issue on prettytime library repo.
Fixed russian plurals:
other was used instead of many for videos and subscribers
Fixed seek_duration english only
2020-02-14 18:19:35 +01:00
|
|
|
android:text="@string/duration_live"
|
2018-03-14 04:25:22 +01:00
|
|
|
android:textAllCaps="true"
|
2018-02-27 04:57:59 +01:00
|
|
|
android:textColor="@android:color/white"
|
|
|
|
android:visibility="gone"
|
|
|
|
android:background="?attr/selectableItemBackground"
|
|
|
|
tools:ignore="HardcodedText,RtlHardcoded,RtlSymmetry" />
|
2020-01-16 12:20:22 +01:00
|
|
|
|
2020-07-13 03:17:21 +02:00
|
|
|
<androidx.appcompat.widget.AppCompatImageButton
|
2020-01-16 12:20:22 +01:00
|
|
|
android:id="@+id/screenRotationButton"
|
|
|
|
android:layout_width="40dp"
|
|
|
|
android:layout_height="40dp"
|
|
|
|
android:layout_marginStart="4dp"
|
2020-02-05 06:59:30 +01:00
|
|
|
android:padding="@dimen/player_main_buttons_padding"
|
2020-01-16 12:20:22 +01:00
|
|
|
android:background="?attr/selectableItemBackground"
|
|
|
|
android:clickable="true"
|
|
|
|
android:focusable="true"
|
|
|
|
android:scaleType="fitCenter"
|
2020-07-13 03:17:21 +02:00
|
|
|
app:srcCompat="@drawable/ic_fullscreen_white_24dp"
|
2020-01-16 12:20:22 +01:00
|
|
|
tools:ignore="ContentDescription,RtlHardcoded"
|
|
|
|
android:visibility="gone"
|
|
|
|
tools:visibility="visible"/>
|
2017-03-27 06:08:16 +02:00
|
|
|
</LinearLayout>
|
|
|
|
</RelativeLayout>
|
|
|
|
|
2019-12-29 22:15:01 +01:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:gravity="center"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:weightSum="5.5">
|
|
|
|
<!--tools:visibility="gone">-->
|
|
|
|
|
2017-03-27 06:08:16 +02:00
|
|
|
<ImageButton
|
2019-12-29 22:15:01 +01:00
|
|
|
android:id="@+id/playPreviousButton"
|
|
|
|
android:layout_width="0dp"
|
2017-03-27 06:08:16 +02:00
|
|
|
android:layout_height="100dp"
|
2019-12-29 22:15:01 +01:00
|
|
|
android:layout_weight="1"
|
|
|
|
android:layout_marginEnd="30dp"
|
2017-10-25 06:47:14 +02:00
|
|
|
android:clickable="true"
|
|
|
|
android:focusable="true"
|
|
|
|
android:background="?attr/selectableItemBackgroundBorderless"
|
2019-12-29 22:15:01 +01:00
|
|
|
android:scaleType="fitCenter"
|
|
|
|
android:src="@drawable/exo_controls_previous"
|
2017-03-27 06:08:16 +02:00
|
|
|
tools:ignore="ContentDescription"/>
|
|
|
|
|
2019-12-29 22:15:01 +01:00
|
|
|
|
2020-07-13 03:17:21 +02:00
|
|
|
<androidx.appcompat.widget.AppCompatImageButton
|
2019-12-29 22:15:01 +01:00
|
|
|
android:id="@+id/playPauseButton"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="100dp"
|
|
|
|
android:layout_weight="1"
|
2017-10-25 06:47:14 +02:00
|
|
|
android:background="?attr/selectableItemBackgroundBorderless"
|
2019-12-29 22:15:01 +01:00
|
|
|
android:scaleType="fitCenter"
|
2020-07-13 03:17:21 +02:00
|
|
|
app:srcCompat="@drawable/ic_pause_white_24dp"
|
2017-10-22 21:43:49 +02:00
|
|
|
tools:ignore="ContentDescription"/>
|
|
|
|
|
|
|
|
<ImageButton
|
|
|
|
android:id="@+id/playNextButton"
|
2019-12-29 22:15:01 +01:00
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="100dp"
|
|
|
|
android:layout_weight="1"
|
2017-10-22 21:43:49 +02:00
|
|
|
android:layout_marginStart="30dp"
|
2017-10-25 06:47:14 +02:00
|
|
|
android:clickable="true"
|
|
|
|
android:focusable="true"
|
|
|
|
android:background="?attr/selectableItemBackgroundBorderless"
|
2019-12-29 22:15:01 +01:00
|
|
|
android:scaleType="fitCenter"
|
2017-10-22 21:43:49 +02:00
|
|
|
android:src="@drawable/exo_controls_next"
|
|
|
|
tools:ignore="ContentDescription"/>
|
|
|
|
|
2019-12-29 22:15:01 +01:00
|
|
|
</LinearLayout>
|
2018-12-27 15:29:17 +01:00
|
|
|
|
2017-03-27 06:08:16 +02:00
|
|
|
</RelativeLayout>
|
|
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:gravity="center"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/controlAnimationView"
|
|
|
|
android:layout_width="100dp"
|
|
|
|
android:layout_height="100dp"
|
2020-05-29 15:32:14 +02:00
|
|
|
android:padding="15dp"
|
2018-08-22 14:25:05 +02:00
|
|
|
android:background="@drawable/background_oval_black_transparent"
|
2017-03-27 06:08:16 +02:00
|
|
|
android:visibility="gone"
|
|
|
|
tools:ignore="ContentDescription"
|
2020-03-25 16:23:47 +01:00
|
|
|
tools:src="@drawable/ic_fast_rewind_white_24dp"
|
2018-08-22 14:25:05 +02:00
|
|
|
tools:visibility="visible" />
|
2017-03-27 06:08:16 +02:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
|
|
<RelativeLayout
|
2017-04-26 21:24:33 +02:00
|
|
|
android:id="@+id/loading_panel"
|
2017-03-27 06:08:16 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:background="@android:color/black"
|
|
|
|
tools:visibility="gone">
|
|
|
|
|
|
|
|
<ProgressBar
|
|
|
|
android:id="@+id/progressBarLoadingPanel"
|
|
|
|
style="?android:attr/progressBarStyleLargeInverse"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_centerInParent="true"
|
|
|
|
android:indeterminate="true"/>
|
|
|
|
</RelativeLayout>
|
|
|
|
|
|
|
|
<RelativeLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
tools:ignore="RtlHardcoded">
|
|
|
|
|
2018-08-15 11:02:37 +02:00
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/volumeRelativeLayout"
|
2017-03-27 06:08:16 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_centerInParent="true"
|
2018-08-15 11:02:37 +02:00
|
|
|
android:background="@drawable/background_oval_black_transparent"
|
2017-03-27 06:08:16 +02:00
|
|
|
android:visibility="gone"
|
2018-08-15 11:02:37 +02:00
|
|
|
tools:visibility="visible">
|
|
|
|
|
|
|
|
<ProgressBar
|
|
|
|
android:id="@+id/volumeProgressBar"
|
|
|
|
style="?android:progressBarStyleHorizontal"
|
|
|
|
android:layout_width="128dp"
|
|
|
|
android:layout_height="128dp"
|
|
|
|
android:indeterminate="false"
|
|
|
|
android:progressDrawable="@drawable/progress_circular_white" />
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/volumeImageView"
|
2020-05-29 15:32:14 +02:00
|
|
|
android:layout_width="70dp"
|
|
|
|
android:layout_height="70dp"
|
2018-08-15 11:02:37 +02:00
|
|
|
android:layout_centerInParent="true"
|
|
|
|
tools:ignore="ContentDescription"
|
2020-03-25 16:23:47 +01:00
|
|
|
tools:src="@drawable/ic_volume_up_white_24dp" />
|
2018-08-15 11:02:37 +02:00
|
|
|
</RelativeLayout>
|
2017-03-27 06:08:16 +02:00
|
|
|
|
2018-08-15 11:02:37 +02:00
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/brightnessRelativeLayout"
|
2017-03-27 06:08:16 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_centerInParent="true"
|
2018-08-15 11:02:37 +02:00
|
|
|
android:background="@drawable/background_oval_black_transparent"
|
2017-03-27 06:08:16 +02:00
|
|
|
android:visibility="gone"
|
2018-08-15 11:02:37 +02:00
|
|
|
tools:visibility="visible">
|
|
|
|
|
|
|
|
<ProgressBar
|
|
|
|
android:id="@+id/brightnessProgressBar"
|
|
|
|
style="?android:progressBarStyleHorizontal"
|
|
|
|
android:layout_width="128dp"
|
|
|
|
android:layout_height="128dp"
|
|
|
|
android:indeterminate="false"
|
|
|
|
android:progressDrawable="@drawable/progress_circular_white" />
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/brightnessImageView"
|
2020-05-29 15:32:14 +02:00
|
|
|
android:layout_width="70dp"
|
|
|
|
android:layout_height="70dp"
|
2018-08-15 11:02:37 +02:00
|
|
|
android:layout_centerInParent="true"
|
|
|
|
tools:ignore="ContentDescription"
|
2020-03-25 16:23:47 +01:00
|
|
|
tools:src="@drawable/ic_brightness_high_white_24dp" />
|
2018-08-15 11:02:37 +02:00
|
|
|
</RelativeLayout>
|
2017-03-27 06:08:16 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/currentDisplaySeek"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_centerInParent="true"
|
|
|
|
android:layout_marginBottom="58dp"
|
|
|
|
android:background="#64000000"
|
|
|
|
android:paddingBottom="10dp"
|
|
|
|
android:paddingLeft="30dp"
|
|
|
|
android:paddingRight="30dp"
|
|
|
|
android:paddingTop="10dp"
|
|
|
|
android:textColor="@android:color/white"
|
|
|
|
android:textSize="26sp"
|
|
|
|
android:textStyle="bold"
|
|
|
|
android:visibility="gone"
|
|
|
|
tools:ignore="RtlHardcoded"
|
|
|
|
tools:text="1:06:29"
|
2018-02-07 00:07:49 +01:00
|
|
|
tools:visibility="visible" />
|
2017-03-27 06:08:16 +02:00
|
|
|
</RelativeLayout>
|
|
|
|
|
2019-12-29 22:15:01 +01:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/resizing_indicator"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="left|top"
|
|
|
|
android:background="#6e000000"
|
|
|
|
android:gravity="center"
|
|
|
|
android:padding="5dp"
|
|
|
|
android:text="@string/popup_resizing_indicator_title"
|
|
|
|
android:textColor="@android:color/white"
|
|
|
|
android:textSize="18sp"
|
|
|
|
android:textStyle="bold"
|
|
|
|
android:visibility="gone"
|
|
|
|
tools:ignore="RtlHardcoded"
|
|
|
|
tools:visibility="gone" />
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:id="@+id/closingOverlay"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:background="#AAFF0000"
|
|
|
|
android:visibility="gone" />
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/closeButton"
|
|
|
|
style="@style/Widget.AppCompat.Button.Borderless"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_centerInParent="true"
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
android:background="?attr/selectableItemBackgroundBorderless"
|
|
|
|
android:clickable="true"
|
|
|
|
android:focusable="true"
|
|
|
|
android:text="@string/close"
|
|
|
|
android:textAllCaps="true"
|
|
|
|
android:textColor="@color/white"
|
|
|
|
android:visibility="gone" />
|
|
|
|
|
2017-11-09 11:29:02 +01:00
|
|
|
</RelativeLayout>
|