<?xml version="1.0" encoding="utf-8"?>
<androidx.core.widget.NestedScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/scan_bg"
tools:context=".fragment.FiveFragment">
<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/backdround_alpha"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/background"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
<ImageView
android:id="@+id/IV_back_f_two"
android:layout_width="70dp"
android:layout_height="70dp"
android:layout_marginStart="30dp"
android:layout_marginTop="30dp"
android:src="@drawable/backbutton"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"></ImageView>
<ImageView
android:id="@+id/imageView6"
android:layout_width="200dp"
android:layout_height="70dp"
android:layout_marginTop="20dp"
android:src="@drawable/title_songs"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/IV_back_f_two"></ImageView>
<androidx.cardview.widget.CardView
android:id="@+id/cardView"
android:layout_width="300dp"
android:layout_height="550dp"
android:layout_marginTop="20dp"
android:layout_marginBottom="50dp"
android:backgroundTint="#450166"
app:cardCornerRadius="30dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/imageView6">
<ProgressBar
android:id="@+id/progress_bar"
android:layout_width="60dp"
android:layout_height="60dp"
android:layout_gravity="center"></ProgressBar>
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/RVsign"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
tools:listitem="@layout/item_song"></androidx.recyclerview.widget.RecyclerView>
</androidx.cardview.widget.CardView>
</androidx.constraintlayout.widget.ConstraintLayout>
</androidx.core.widget.NestedScrollView>