2022-02-06 18:40:27 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2022-06-21 01:17:35 +05:30
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2022-02-06 18:40:27 +05:30
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2022-06-21 01:17:35 +05:30
|
|
|
tools:context=".fragments.PlaylistFragment">
|
|
|
|
|
|
|
|
<ProgressBar
|
|
|
|
android:id="@+id/playlist_progress"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_centerHorizontal="true"
|
|
|
|
android:layout_centerVertical="true"
|
2022-06-21 01:47:13 +05:30
|
|
|
android:visibility="gone" />
|
2022-06-21 01:17:35 +05:30
|
|
|
|
|
|
|
<ScrollView
|
2022-06-27 22:47:52 +05:30
|
|
|
android:id="@+id/playlist_scrollview"
|
2022-06-21 01:17:35 +05:30
|
|
|
android:layout_width="match_parent"
|
2022-06-27 22:47:52 +05:30
|
|
|
android:layout_height="match_parent">
|
2022-02-06 18:40:27 +05:30
|
|
|
|
2022-06-21 01:47:13 +05:30
|
|
|
<LinearLayout
|
2022-06-03 22:19:48 +05:30
|
|
|
android:layout_width="match_parent"
|
2022-08-08 18:52:08 +05:30
|
|
|
android:layout_height="wrap_content"
|
2022-06-27 22:47:52 +05:30
|
|
|
android:orientation="vertical">
|
2022-02-06 18:40:27 +05:30
|
|
|
|
2022-07-08 17:30:11 +05:30
|
|
|
<LinearLayout
|
2022-06-21 01:47:13 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2022-07-08 22:20:11 +05:30
|
|
|
android:orientation="horizontal"
|
|
|
|
android:padding="8dp">
|
2022-07-08 17:30:11 +05:30
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/playlist_name"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:textSize="24sp"
|
|
|
|
android:textStyle="bold" />
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/optionsMenu"
|
|
|
|
android:layout_width="20dp"
|
|
|
|
android:layout_height="20dp"
|
|
|
|
android:layout_gravity="center"
|
2022-07-28 19:41:35 +05:30
|
|
|
android:layout_marginEnd="10dp"
|
2022-07-08 17:30:11 +05:30
|
|
|
android:src="@drawable/ic_three_dots" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
2022-06-03 22:19:48 +05:30
|
|
|
|
2022-06-21 01:47:13 +05:30
|
|
|
<TextView
|
2022-08-08 18:52:08 +05:30
|
|
|
android:id="@+id/uploader"
|
2022-06-21 01:47:13 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="8dp"
|
|
|
|
android:textStyle="bold" />
|
2022-06-03 22:19:48 +05:30
|
|
|
|
2022-06-21 01:47:13 +05:30
|
|
|
<TextView
|
2022-08-08 18:52:08 +05:30
|
|
|
android:id="@+id/video_count"
|
2022-06-21 01:47:13 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="8dp" />
|
2022-06-03 22:19:48 +05:30
|
|
|
|
2022-06-21 01:47:13 +05:30
|
|
|
<RelativeLayout
|
2022-06-03 22:19:48 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2022-06-21 01:47:13 +05:30
|
|
|
android:descendantFocusability="blocksDescendants">
|
|
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
android:id="@+id/playlist_recView"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:nestedScrollingEnabled="false" />
|
|
|
|
</RelativeLayout>
|
2022-02-06 18:40:27 +05:30
|
|
|
|
2022-06-21 01:47:13 +05:30
|
|
|
</LinearLayout>
|
2022-02-06 18:40:27 +05:30
|
|
|
|
2022-06-21 01:47:13 +05:30
|
|
|
</ScrollView>
|
2022-02-06 18:40:27 +05:30
|
|
|
|
2022-06-21 01:17:35 +05:30
|
|
|
</RelativeLayout>
|