mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-24 10:35:19 +00:00
26 lines
986 B
XML
26 lines
986 B
XML
<?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"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/recycler_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:scrollbars="vertical"
|
|
tools:listitem="@layout/media_overview_document_item" />
|
|
|
|
<TextView
|
|
android:id="@+id/no_documents"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center"
|
|
android:text="@string/media_overview_documents_fragment__no_documents_found"
|
|
android:textSize="@dimen/medium_font_size"
|
|
android:visibility="gone"
|
|
tools:visibility="visible" />
|
|
|
|
</RelativeLayout>
|