ytdlnis/app/src/main/res/layout/fragment_active.xml
2024-10-17 22:41:07 +02:00

44 lines
No EOL
1.8 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:android="http://schemas.android.com/apk/res/android">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/download_recyclerview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scrollbars="none"
android:clipToPadding="false"
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"/>
<com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton
android:id="@+id/pause"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|end"
android:text="@string/pause_all"
android:layout_margin="16dp"
android:contentDescription="@string/pause_all"
app:icon="@drawable/exomedia_ic_pause_white"
app:useCompatPadding="true" />
<com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton
android:id="@+id/resume"
android:visibility="gone"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|end"
android:text="@string/resume_all"
android:layout_margin="16dp"
android:contentDescription="@string/resume_all"
app:icon="@drawable/exomedia_ic_play_arrow_white"
app:useCompatPadding="true" />
<include layout="@layout/no_results"
android:layout_height="match_parent"
android:visibility="gone"
android:layout_width="match_parent"/>
</androidx.coordinatorlayout.widget.CoordinatorLayout>