2020-10-09 20:24:02 +02:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2021-07-27 13:38:59 -04:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2020-04-06 21:07:16 +02:00
|
|
|
android:orientation="vertical">
|
2018-09-23 15:12:23 -03:00
|
|
|
|
2020-04-06 21:07:16 +02:00
|
|
|
<include
|
|
|
|
android:id="@+id/list_empty_view"
|
2020-10-09 20:24:02 +02:00
|
|
|
layout="@layout/list_empty_view"
|
2020-04-06 21:07:16 +02:00
|
|
|
android:visibility="gone" />
|
2018-09-23 15:12:23 -03:00
|
|
|
|
2020-04-06 21:07:16 +02:00
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
android:id="@+id/mission_recycler"
|
|
|
|
android:layout_width="match_parent"
|
2020-10-09 20:24:02 +02:00
|
|
|
android:layout_height="match_parent" />
|
|
|
|
|
2018-11-08 19:03:30 -03:00
|
|
|
</LinearLayout>
|