2022-09-09 17:53:39 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2022-09-10 15:50:51 +05:30
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2024-01-17 22:15:30 +05:30
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2022-09-09 17:53:39 +05:30
|
|
|
android:layout_width="match_parent"
|
2022-09-09 20:19:00 +05:30
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:background="?android:attr/colorBackground">
|
2022-09-09 17:53:39 +05:30
|
|
|
|
2022-09-10 15:50:51 +05:30
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/downloads_empty"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:gravity="center"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:layout_width="100dp"
|
|
|
|
android:layout_height="100dp"
|
|
|
|
android:layout_marginBottom="16dp"
|
|
|
|
android:src="@drawable/ic_download" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginHorizontal="10dp"
|
|
|
|
android:gravity="center"
|
|
|
|
android:text="@string/emptyList"
|
|
|
|
android:textSize="20sp"
|
|
|
|
android:textStyle="bold" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
2022-09-09 17:53:39 +05:30
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
android:id="@+id/downloads"
|
|
|
|
android:layout_width="match_parent"
|
2022-09-10 15:50:51 +05:30
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:visibility="gone" />
|
2022-09-09 17:53:39 +05:30
|
|
|
|
2024-01-17 22:15:30 +05:30
|
|
|
<com.google.android.material.floatingactionbutton.FloatingActionButton
|
|
|
|
android:id="@+id/shuffle_background"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="bottom|end"
|
|
|
|
android:layout_margin="16dp"
|
|
|
|
android:contentDescription="@string/shuffle"
|
|
|
|
android:src="@drawable/ic_shuffle"
|
|
|
|
android:tooltipText="@string/shuffle"
|
|
|
|
tools:targetApi="o" />
|
|
|
|
|
2022-09-10 15:50:51 +05:30
|
|
|
</FrameLayout>
|