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"
|
|
|
|
android:visibility="gone"/>
|
|
|
|
|
|
|
|
<ScrollView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:id="@+id/playlist_scrollview">
|
2022-02-06 18:40:27 +05:30
|
|
|
|
2022-06-03 22:19:48 +05:30
|
|
|
<LinearLayout
|
|
|
|
android:orientation="vertical"
|
2022-02-06 18:40:27 +05:30
|
|
|
android:layout_width="match_parent"
|
2022-06-03 22:19:48 +05:30
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/playlist_name"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text=""
|
|
|
|
android:textSize="24sp"
|
|
|
|
android:textStyle="bold"
|
|
|
|
android:padding="8dp" />
|
2022-02-06 18:40:27 +05:30
|
|
|
|
2022-06-03 22:19:48 +05:30
|
|
|
<TextView
|
|
|
|
android:id="@+id/playlist_uploader"
|
2022-02-06 18:40:27 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2022-06-03 22:19:48 +05:30
|
|
|
android:padding="8dp"
|
|
|
|
android:textStyle="bold" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/playlist_totVideos"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="8dp" />
|
|
|
|
|
|
|
|
<RelativeLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
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-03 22:19:48 +05:30
|
|
|
</LinearLayout>
|
2022-02-06 18:40:27 +05:30
|
|
|
|
2022-06-21 01:17:35 +05:30
|
|
|
</ScrollView>
|
2022-02-06 18:40:27 +05:30
|
|
|
|
2022-06-21 01:17:35 +05:30
|
|
|
</RelativeLayout>
|