mirror of
https://github.com/ArcaneChat/android.git
synced 2026-07-03 14:05:24 +02:00
25 lines
1022 B
XML
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>
|