2021-12-12 17:38:23 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2022-07-02 21:53:24 +05:30
|
|
|
<com.github.libretube.views.SingleViewTouchableMotionLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2021-12-12 17:38:23 +05:30
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2022-02-02 18:08:57 +05:30
|
|
|
android:id="@+id/playerMotionLayout"
|
2021-12-12 17:38:23 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
app:layoutDescription="@xml/player_scene"
|
2022-05-07 21:52:45 +05:30
|
|
|
tools:context=".PlayerFragment">
|
2021-12-12 17:38:23 +05:30
|
|
|
|
|
|
|
<ScrollView
|
2022-05-08 23:02:13 +05:30
|
|
|
android:id="@+id/player_scrollView"
|
2021-12-12 17:38:23 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="0dp"
|
2022-05-21 13:52:00 +05:30
|
|
|
android:background="?android:attr/colorBackground"
|
2021-12-12 17:38:23 +05:30
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintHorizontal_bias="0.5"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2022-05-07 21:52:45 +05:30
|
|
|
app:layout_constraintTop_toBottomOf="@+id/main_container">
|
2021-12-12 17:38:23 +05:30
|
|
|
|
|
|
|
<LinearLayout
|
2021-12-15 15:54:12 +05:30
|
|
|
android:id="@+id/linLayout"
|
2021-12-12 17:38:23 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2022-06-28 20:59:31 +05:30
|
|
|
android:animateLayoutChanges="true"
|
|
|
|
android:orientation="vertical">
|
2021-12-14 21:45:53 +05:30
|
|
|
|
2022-05-07 21:52:45 +05:30
|
|
|
<RelativeLayout
|
2022-06-13 19:45:02 +05:30
|
|
|
android:id="@+id/player_title_layout"
|
2022-01-28 18:31:41 +05:30
|
|
|
android:layout_width="match_parent"
|
2022-05-07 21:52:45 +05:30
|
|
|
android:layout_height="wrap_content"
|
2022-06-28 20:59:31 +05:30
|
|
|
android:layout_marginTop="5dp"
|
2022-05-07 21:52:45 +05:30
|
|
|
android:orientation="horizontal">
|
2022-03-27 11:49:17 +05:30
|
|
|
|
2022-05-07 21:52:45 +05:30
|
|
|
<TextView
|
|
|
|
android:id="@+id/player_title"
|
|
|
|
android:layout_width="wrap_content"
|
2022-03-27 11:49:17 +05:30
|
|
|
android:layout_height="wrap_content"
|
2022-06-13 19:45:02 +05:30
|
|
|
android:layout_centerVertical="true"
|
2022-05-07 21:52:45 +05:30
|
|
|
android:layout_marginStart="10dp"
|
|
|
|
android:layout_marginTop="10dp"
|
2022-05-24 14:12:54 +05:30
|
|
|
android:layout_marginEnd="30dp"
|
2022-05-07 21:52:45 +05:30
|
|
|
android:text="Video Title"
|
2022-05-24 14:12:54 +05:30
|
|
|
android:textSize="18sp" />
|
2022-03-27 11:49:17 +05:30
|
|
|
|
|
|
|
|
2022-05-07 21:52:45 +05:30
|
|
|
<ImageView
|
|
|
|
android:id="@+id/player_description_arrow"
|
|
|
|
android:layout_width="wrap_content"
|
2022-03-27 11:49:17 +05:30
|
|
|
android:layout_height="wrap_content"
|
2022-05-07 21:52:45 +05:30
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_centerInParent="true"
|
2022-05-20 19:12:45 +05:30
|
|
|
android:layout_marginStart="8dp"
|
|
|
|
android:layout_marginEnd="8dp"
|
2022-05-07 21:52:45 +05:30
|
|
|
android:src="@drawable/ic_arrow_down" />
|
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
2022-06-28 20:23:18 +05:30
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginHorizontal="10dp"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/player_views_info"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:text="10M views 2 days ago " />
|
|
|
|
|
2022-06-28 01:05:06 +05:30
|
|
|
<LinearLayout
|
2022-06-28 20:23:18 +05:30
|
|
|
android:layout_width="wrap_content"
|
2022-06-13 19:45:02 +05:30
|
|
|
android:layout_height="wrap_content"
|
2022-06-28 20:23:18 +05:30
|
|
|
android:layout_marginLeft="3dp"
|
|
|
|
android:layout_marginTop="2dp">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:layout_width="12dp"
|
|
|
|
android:layout_height="12dp"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:src="@drawable/ic_like" />
|
2022-06-28 01:05:06 +05:30
|
|
|
|
|
|
|
<TextView
|
2022-06-28 20:23:18 +05:30
|
|
|
android:id="@+id/textLike"
|
|
|
|
android:layout_width="wrap_content"
|
2022-06-28 01:05:06 +05:30
|
|
|
android:layout_height="wrap_content"
|
2022-06-28 20:23:18 +05:30
|
|
|
android:layout_marginHorizontal="5dp"
|
|
|
|
android:text="4.2K" />
|
2022-06-28 01:05:06 +05:30
|
|
|
|
2022-06-28 20:23:18 +05:30
|
|
|
<ImageView
|
|
|
|
android:layout_width="12dp"
|
|
|
|
android:layout_height="12dp"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:layout_marginLeft="5dp"
|
|
|
|
android:rotation="180"
|
|
|
|
android:src="@drawable/ic_like" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/textDislike"
|
2022-06-28 01:05:06 +05:30
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2022-06-28 20:23:18 +05:30
|
|
|
android:layout_marginHorizontal="5dp"
|
|
|
|
android:text="1.3K" />
|
2022-06-28 01:05:06 +05:30
|
|
|
|
|
|
|
</LinearLayout>
|
2022-06-13 19:45:02 +05:30
|
|
|
|
2022-06-28 20:23:18 +05:30
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/desc_linLayout"
|
2022-05-07 21:52:45 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2022-06-28 20:23:18 +05:30
|
|
|
android:orientation="vertical"
|
|
|
|
android:visibility="gone">
|
|
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
android:id="@+id/chapters_recView"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@id/comments_toggle"
|
|
|
|
android:layout_marginHorizontal="3dp"
|
|
|
|
android:layout_marginTop="20dp"
|
|
|
|
android:nestedScrollingEnabled="false"
|
|
|
|
android:visibility="gone" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/player_description"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:autoLink="web"
|
|
|
|
android:padding="8dp"
|
|
|
|
android:textIsSelectable="true"
|
|
|
|
android:textSize="14sp" />
|
2022-01-28 18:31:41 +05:30
|
|
|
|
2022-06-28 20:23:18 +05:30
|
|
|
</LinearLayout>
|
2022-02-02 18:08:57 +05:30
|
|
|
|
2022-05-07 21:52:45 +05:30
|
|
|
<com.google.android.material.card.MaterialCardView
|
|
|
|
style="@style/Widget.Material3.CardView.Elevated"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="80dp"
|
|
|
|
android:layout_margin="17dp"
|
|
|
|
app:cardCornerRadius="27dp">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
2022-01-28 18:31:41 +05:30
|
|
|
android:layout_height="wrap_content"
|
2022-05-07 21:52:45 +05:30
|
|
|
android:layout_gravity="center"
|
|
|
|
android:layout_marginLeft="10dp"
|
|
|
|
android:layout_marginRight="10dp"
|
|
|
|
android:gravity="center"
|
|
|
|
android:orientation="horizontal">
|
2022-01-28 18:31:41 +05:30
|
|
|
|
2022-05-07 21:52:45 +05:30
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/relPlayer_share"
|
2022-06-28 20:57:57 +05:30
|
|
|
style="@style/PlayerActionsLayout">
|
2022-03-15 21:36:42 +05:30
|
|
|
|
2022-05-07 21:52:45 +05:30
|
|
|
<ImageView
|
|
|
|
android:layout_width="24dp"
|
|
|
|
android:layout_height="25dp"
|
|
|
|
android:src="@drawable/ic_share" />
|
2022-02-02 18:08:57 +05:30
|
|
|
|
2022-05-07 21:52:45 +05:30
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/share" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/relPlayer_download"
|
2022-06-28 20:57:57 +05:30
|
|
|
style="@style/PlayerActionsLayout">
|
2022-05-07 21:52:45 +05:30
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:layout_width="24dp"
|
|
|
|
android:layout_height="25dp"
|
2022-05-07 22:13:04 +05:30
|
|
|
android:src="@drawable/ic_download" />
|
2022-05-07 21:52:45 +05:30
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2022-06-13 19:45:02 +05:30
|
|
|
android:autoSizeTextType="uniform"
|
2022-05-07 21:52:45 +05:30
|
|
|
android:gravity="center"
|
2022-06-04 11:22:08 +05:30
|
|
|
android:maxLines="1"
|
2022-06-13 19:45:02 +05:30
|
|
|
android:text="@string/download" />
|
2022-05-07 21:52:45 +05:30
|
|
|
</LinearLayout>
|
2021-12-14 21:45:53 +05:30
|
|
|
|
2022-05-07 21:52:45 +05:30
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/relPlayer_vlc"
|
2022-06-28 20:57:57 +05:30
|
|
|
style="@style/PlayerActionsLayout">
|
2022-05-07 21:52:45 +05:30
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:layout_width="24dp"
|
|
|
|
android:layout_height="25dp"
|
|
|
|
android:padding="2dp"
|
|
|
|
android:src="@drawable/ic_vlc" />
|
2022-02-02 18:08:57 +05:30
|
|
|
|
2022-05-07 21:52:45 +05:30
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center"
|
|
|
|
android:text="VLC" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/save"
|
2022-06-28 20:57:57 +05:30
|
|
|
style="@style/PlayerActionsLayout">
|
2022-05-07 21:52:45 +05:30
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:layout_width="24dp"
|
|
|
|
android:layout_height="25dp"
|
|
|
|
android:src="@drawable/ic_save" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/save" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</com.google.android.material.card.MaterialCardView>
|
2022-02-02 18:08:57 +05:30
|
|
|
|
2022-01-28 18:31:41 +05:30
|
|
|
<RelativeLayout
|
2022-02-05 00:25:05 +05:30
|
|
|
android:id="@+id/player_channel"
|
2022-01-28 18:31:41 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2022-02-13 17:23:04 +05:30
|
|
|
android:layout_marginStart="8dp"
|
2022-05-07 21:52:45 +05:30
|
|
|
android:layout_marginTop="15dp"
|
2022-06-13 19:45:02 +05:30
|
|
|
android:layout_marginEnd="8dp"
|
2022-05-07 21:52:45 +05:30
|
|
|
android:layout_marginBottom="15dp"
|
|
|
|
android:background="?android:attr/selectableItemBackground"
|
|
|
|
android:paddingLeft="8dp"
|
|
|
|
android:paddingRight="8dp">
|
2022-01-28 18:31:41 +05:30
|
|
|
|
|
|
|
<de.hdodenhof.circleimageview.CircleImageView
|
|
|
|
android:id="@+id/player_channelImage"
|
|
|
|
android:layout_width="40dp"
|
|
|
|
android:layout_height="40dp"
|
|
|
|
android:layout_centerVertical="true"
|
2022-02-04 01:47:08 +05:30
|
|
|
android:layout_marginEnd="4dp" />
|
2022-01-28 18:31:41 +05:30
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/player_channelName"
|
2022-03-16 19:00:47 +05:30
|
|
|
android:layout_width="0dp"
|
2022-01-28 18:31:41 +05:30
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_centerVertical="true"
|
2022-05-07 21:52:45 +05:30
|
|
|
android:layout_marginLeft="5dp"
|
2022-03-16 19:00:47 +05:30
|
|
|
android:layout_toStartOf="@+id/player_subscribe"
|
2022-03-29 22:32:34 +05:30
|
|
|
android:layout_toEndOf="@+id/player_channelImage"
|
2022-03-16 19:00:47 +05:30
|
|
|
android:ellipsize="end"
|
2022-03-29 22:32:34 +05:30
|
|
|
android:maxLines="1"
|
|
|
|
android:text=""
|
2022-05-07 21:52:45 +05:30
|
|
|
android:textSize="15dp" />
|
2022-01-28 18:31:41 +05:30
|
|
|
|
|
|
|
|
2022-02-13 22:43:26 +05:30
|
|
|
<com.google.android.material.button.MaterialButton
|
2022-01-28 18:31:41 +05:30
|
|
|
android:id="@+id/player_subscribe"
|
2022-05-22 04:11:53 +05:30
|
|
|
style="@style/Widget.Material3.Button.ElevatedButton"
|
2022-01-28 18:31:41 +05:30
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2022-02-04 01:47:08 +05:30
|
|
|
android:layout_alignParentEnd="true"
|
2022-01-28 18:31:41 +05:30
|
|
|
android:layout_centerVertical="true"
|
2022-05-07 21:52:45 +05:30
|
|
|
android:drawableLeft="@drawable/ic_bell"
|
2022-05-12 21:31:39 +05:30
|
|
|
android:drawableTint="?android:attr/textColorPrimary"
|
2022-02-05 00:25:05 +05:30
|
|
|
android:text="@string/subscribe"
|
2022-05-12 21:31:39 +05:30
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
2022-05-07 21:52:45 +05:30
|
|
|
android:textSize="12dp"
|
|
|
|
app:cornerRadius="11dp" />
|
2022-01-28 18:31:41 +05:30
|
|
|
</RelativeLayout>
|
2022-02-02 18:08:57 +05:30
|
|
|
|
2022-05-07 21:52:45 +05:30
|
|
|
|
2022-01-28 18:31:41 +05:30
|
|
|
<RelativeLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2022-06-28 20:25:01 +05:30
|
|
|
android:animateLayoutChanges="true"
|
2022-01-28 18:31:41 +05:30
|
|
|
android:descendantFocusability="blocksDescendants">
|
2022-02-02 18:08:57 +05:30
|
|
|
|
2022-05-18 15:21:34 +05:30
|
|
|
<com.google.android.material.card.MaterialCardView
|
2022-05-08 16:29:44 +05:30
|
|
|
android:id="@+id/comments_toggle"
|
2022-05-18 15:21:34 +05:30
|
|
|
style="@style/Widget.Material3.CardView.Elevated"
|
2022-05-08 16:29:44 +05:30
|
|
|
android:layout_width="match_parent"
|
2022-05-18 15:21:34 +05:30
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_margin="16dp"
|
2022-06-04 12:01:34 +05:30
|
|
|
app:cardCornerRadius="18dp">
|
2022-05-08 16:29:44 +05:30
|
|
|
|
2022-05-18 15:21:34 +05:30
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_margin="8dp"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/commentsToggle_textView"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="8dp"
|
|
|
|
android:text="@string/comments"
|
|
|
|
android:textSize="17sp"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/commentsToggle_imageView"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginRight="3dp"
|
|
|
|
android:src="@drawable/ic_arrow_up_down"
|
2022-06-04 12:01:34 +05:30
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
2022-05-18 15:21:34 +05:30
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
2022-06-04 12:01:34 +05:30
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
2022-05-18 15:21:34 +05:30
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
2022-05-08 16:29:44 +05:30
|
|
|
|
2022-05-18 15:21:34 +05:30
|
|
|
</com.google.android.material.card.MaterialCardView>
|
2022-05-07 21:52:45 +05:30
|
|
|
|
2022-02-02 18:08:57 +05:30
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
2022-05-08 16:03:01 +05:30
|
|
|
android:id="@+id/comments_recView"
|
2022-02-02 18:08:57 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2022-06-13 19:45:02 +05:30
|
|
|
android:layout_below="@id/comments_toggle"
|
2022-05-08 16:49:50 +05:30
|
|
|
android:layout_marginLeft="20dp"
|
2022-06-13 19:45:02 +05:30
|
|
|
android:layout_marginTop="20dp"
|
2022-05-08 16:49:50 +05:30
|
|
|
android:layout_marginRight="20dp"
|
2022-05-08 21:55:22 +05:30
|
|
|
android:nestedScrollingEnabled="false"
|
2022-05-08 16:29:44 +05:30
|
|
|
android:visibility="gone" />
|
2022-05-08 16:03:01 +05:30
|
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
2022-07-01 00:55:40 +05:30
|
|
|
android:id="@+id/related_rec_view"
|
2022-05-08 16:03:01 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@id/comments_recView"
|
|
|
|
android:layout_marginStart="10dp"
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
android:layout_marginEnd="10dp"
|
|
|
|
android:layout_marginBottom="10dp"
|
2022-02-02 18:08:57 +05:30
|
|
|
android:nestedScrollingEnabled="false" />
|
2022-01-28 18:31:41 +05:30
|
|
|
</RelativeLayout>
|
2022-05-07 21:52:45 +05:30
|
|
|
|
2021-12-12 17:38:23 +05:30
|
|
|
</LinearLayout>
|
2022-05-07 21:52:45 +05:30
|
|
|
|
2021-12-12 17:38:23 +05:30
|
|
|
</ScrollView>
|
|
|
|
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
|
|
android:id="@+id/main_container"
|
|
|
|
android:layout_width="match_parent"
|
2022-02-04 01:42:58 +05:30
|
|
|
android:layout_height="0dp"
|
2022-05-07 21:52:45 +05:30
|
|
|
android:background="?attr/colorSurface"
|
2021-12-12 17:38:23 +05:30
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
2022-05-07 21:52:45 +05:30
|
|
|
app:layout_constraintHeight_percent="0.35"
|
2021-12-12 17:38:23 +05:30
|
|
|
app:layout_constraintHorizontal_bias="0.5"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2022-05-07 21:52:45 +05:30
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
2022-01-28 22:40:32 +05:30
|
|
|
|
2022-07-02 21:53:24 +05:30
|
|
|
<com.github.libretube.views.CustomExoPlayerView
|
2021-12-12 17:38:23 +05:30
|
|
|
android:id="@+id/player"
|
|
|
|
android:layout_width="match_parent"
|
2021-12-16 03:54:40 +05:30
|
|
|
android:layout_height="0dp"
|
2022-02-14 15:13:10 +05:30
|
|
|
android:background="#000000"
|
2021-12-12 17:38:23 +05:30
|
|
|
android:scaleType="centerCrop"
|
|
|
|
app:layout_constraintBottom_toBottomOf="@id/main_container"
|
|
|
|
app:layout_constraintStart_toStartOf="@id/main_container"
|
|
|
|
app:layout_constraintTop_toTopOf="@id/main_container"
|
2022-02-14 15:13:10 +05:30
|
|
|
app:show_buffering="always" />
|
2021-12-12 17:38:23 +05:30
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/close_imageView"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginEnd="16dp"
|
|
|
|
android:alpha="0"
|
|
|
|
android:src="@drawable/ic_close"
|
2021-12-14 02:58:17 +05:30
|
|
|
android:visibility="gone"
|
2022-02-02 18:08:57 +05:30
|
|
|
app:layout_constraintBottom_toBottomOf="@id/main_container"
|
|
|
|
app:layout_constraintEnd_toEndOf="@id/main_container"
|
|
|
|
app:layout_constraintTop_toTopOf="@id/main_container" />
|
2021-12-12 17:38:23 +05:30
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/play_imageView"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginEnd="24dp"
|
|
|
|
android:alpha="0"
|
|
|
|
android:src="@drawable/ic_play"
|
2022-02-02 18:08:57 +05:30
|
|
|
android:visibility="gone"
|
2021-12-12 17:38:23 +05:30
|
|
|
app:layout_constraintBottom_toBottomOf="@+id/close_imageView"
|
|
|
|
app:layout_constraintEnd_toStartOf="@+id/close_imageView"
|
2022-02-02 18:08:57 +05:30
|
|
|
app:layout_constraintTop_toTopOf="@+id/close_imageView" />
|
2021-12-12 17:38:23 +05:30
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/title_textView"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="8dp"
|
|
|
|
android:layout_marginEnd="12dp"
|
|
|
|
android:alpha="0"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:maxLines="1"
|
2022-02-02 18:08:57 +05:30
|
|
|
android:visibility="gone"
|
2021-12-12 17:38:23 +05:30
|
|
|
app:layout_constraintBottom_toBottomOf="@+id/play_imageView"
|
|
|
|
app:layout_constraintEnd_toStartOf="@+id/play_imageView"
|
|
|
|
app:layout_constraintStart_toEndOf="@+id/player"
|
2022-02-02 18:08:57 +05:30
|
|
|
app:layout_constraintTop_toTopOf="@+id/play_imageView" />
|
2021-12-12 17:38:23 +05:30
|
|
|
|
2022-07-02 21:53:24 +05:30
|
|
|
</com.github.libretube.views.SingleViewTouchableMotionLayout>
|