aboutsummaryrefslogtreecommitdiff
path: root/WordPress/src/main/res/layout/reader_fragment_list.xml
blob: 0a437b64de25a6c22f043c7fa86420d2e897e92b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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>