summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/completed_downloads_empty_view.xml
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/res/layout/completed_downloads_empty_view.xml')
-rw-r--r--app/src/main/res/layout/completed_downloads_empty_view.xml27
1 files changed, 27 insertions, 0 deletions
diff --git a/app/src/main/res/layout/completed_downloads_empty_view.xml b/app/src/main/res/layout/completed_downloads_empty_view.xml
new file mode 100644
index 000000000..6d78c8092
--- /dev/null
+++ b/app/src/main/res/layout/completed_downloads_empty_view.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="utf-8"?>
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:orientation="vertical"
+ android:gravity="center">
+
+ <TextView
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:paddingLeft="10dp"
+ android:paddingRight="10dp"
+ android:text="@string/no_comp_downloads_head_label"
+ android:textSize="20dp"
+ android:textStyle="bold"
+ android:paddingBottom="10dp"/>
+
+ <TextView
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:textSize="15dp"
+ android:text="@string/no_comp_downloads_label"
+ android:paddingLeft="20dp"
+ android:paddingRight="20dp"
+ android:textAlignment="center"/>
+
+</LinearLayout>