2019-03-03 12:50:15 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
2019-10-04 12:59:08 +00:00
|
|
|
<androidx.core.widget.NestedScrollView
|
2019-03-03 12:50:15 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
<include
|
|
|
|
android:id="@+id/empty_state_view"
|
|
|
|
layout="@layout/list_empty_view"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
android:layout_marginTop="90dp"
|
|
|
|
tools:visibility="visible"/>
|
|
|
|
|
2019-10-04 12:59:08 +00:00
|
|
|
</androidx.core.widget.NestedScrollView>
|
2019-03-03 12:50:15 +00:00
|
|
|
|
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="4dp"
|
|
|
|
android:layout_alignParentTop="true"
|
2020-03-25 15:23:47 +00:00
|
|
|
android:background="?attr/toolbar_shadow"
|
2019-03-03 12:50:15 +00:00
|
|
|
android:visibility="gone" />
|
|
|
|
|
|
|
|
</RelativeLayout>
|