2019-07-26 13:31:31 +02:00
|
|
|
<?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"
|
2019-07-30 22:48:13 +02:00
|
|
|
android:layout_marginStart="24dp"
|
|
|
|
|
android:layout_marginEnd="24dp"
|
2019-07-26 13:31:31 +02:00
|
|
|
android:layout_marginTop="16dp"
|
|
|
|
|
android:textSize="22sp"
|
2019-07-30 22:48:13 +02:00
|
|
|
android:fontFamily="@font/manrope_semibold"
|
|
|
|
|
android:layout_gravity="start"
|
2019-07-31 19:48:21 +02:00
|
|
|
android:textColor="@color/colorText"
|
2019-08-01 15:36:21 +02:00
|
|
|
android:textAlignment="viewStart"/>
|
|
|
|
|
|
|
|
|
|
<RelativeLayout
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:paddingTop="4dp">
|
2019-07-26 13:31:31 +02:00
|
|
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
|
android:id="@+id/recyclerView"
|
|
|
|
|
android:layout_width="match_parent"
|
2019-08-11 20:25:01 +02:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:scrollbars="vertical"/>
|
2019-07-26 13:31:31 +02:00
|
|
|
|
2019-08-01 15:36:21 +02:00
|
|
|
</RelativeLayout>
|
2019-07-26 13:31:31 +02:00
|
|
|
|
|
|
|
|
</LinearLayout>
|