LibreTube/app/src/main/res/layout/fragment_downloads.xml

36 lines
1.2 KiB
XML
Raw Normal View History

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"
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
2022-09-10 15:50:51 +05:30
</FrameLayout>