Files
arcanechat-android/res/layout/profile_documents_fragment.xml
T
2019-11-08 01:22:28 +01:00

25 lines
1022 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"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="?attr/profile_toolbar_background">
<androidx.recyclerview.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="20sp"
android:gravity="center"
android:visibility="gone"
android:padding="16dp"
android:lineSpacingMultiplier="1.3"
android:text="@string/tab_docs_empty_hint" />
</RelativeLayout>