<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
                xmlns:app="http://schemas.android.com/apk/res-auto"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:background="@drawable/default_session_background">

    <android.support.v7.widget.RecyclerView
            android:id="@+id/recycler_view"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:scrollbars="vertical" />

    <TextView android:id="@+id/no_documents"
              android:layout_width="match_parent"
              android:layout_height="match_parent"
              android:textSize="@dimen/medium_font_size"
              android:gravity="center"
              android:visibility="gone"
              android:textColor="@color/text"
              android:text="@string/media_overview_documents_fragment__no_documents_found" />

</RelativeLayout>