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