aboutsummaryrefslogtreecommitdiff
path: root/WordPress/src/main/res/layout/reader_fragment_list.xml
diff options
context:
space:
mode:
Diffstat (limited to 'WordPress/src/main/res/layout/reader_fragment_list.xml')
-rw-r--r--WordPress/src/main/res/layout/reader_fragment_list.xml29
1 files changed, 29 insertions, 0 deletions
diff --git a/WordPress/src/main/res/layout/reader_fragment_list.xml b/WordPress/src/main/res/layout/reader_fragment_list.xml
new file mode 100644
index 000000000..0a437b64d
--- /dev/null
+++ b/WordPress/src/main/res/layout/reader_fragment_list.xml
@@ -0,0 +1,29 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<!--
+ simple list fragment used to show followed tags, popular tags, followed blogs and recommended blogs
+-->
+<RelativeLayout 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">
+
+ <org.wordpress.android.ui.reader.views.ReaderRecyclerView
+ android:id="@+id/recycler_view"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:scrollbars="vertical"
+ tools:listitem="@layout/reader_listitem_tag" />
+
+ <org.wordpress.android.widgets.WPTextView
+ android:id="@+id/text_empty"
+ style="@style/ReaderTextView.EmptyList"
+ android:layout_centerInParent="true"
+ android:text="@string/reader_empty_recommended_blogs"
+ android:textColor="@color/grey_darken_10"
+ android:visibility="gone"
+ app:fixWidowWords="true"
+ tools:visibility="visible" />
+
+</RelativeLayout>