Archived
29 lines
1.1 KiB
XML
29 lines
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|||
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
android:orientation="vertical" android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/empty_textviewtitle"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_marginStart="16dp"
|
||
|
|
android:layout_marginEnd="16dp"
|
||
|
|
android:layout_marginTop="16dp"
|
||
|
|
android:textSize="22sp"
|
||
|
|
android:layout_gravity="center_horizontal"
|
||
|
|
android:textColor="@color/textcolor"
|
||
|
|
android:textAlignment="center"/>
|
||
|
|
|
||
|
|
<androidx.recyclerview.widget.RecyclerView
|
||
|
|
android:id="@+id/recyclerView"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:paddingTop="4dp"
|
||
|
|
android:paddingStart="0dp"
|
||
|
|
android:paddingEnd="0dp"
|
||
|
|
android:paddingBottom="0dp">
|
||
|
|
|
||
|
|
</androidx.recyclerview.widget.RecyclerView>
|
||
|
|
|
||
|
|
</LinearLayout>
|