mirror of
https://github.com/TeamNewPipe/NewPipe
synced 2024-11-19 00:04:56 +00:00
18 lines
477 B
XML
18 lines
477 B
XML
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:orientation="vertical">
|
|
|
|
<include
|
|
layout="@layout/list_empty_view"
|
|
android:id="@+id/list_empty_view"
|
|
android:visibility="gone" />
|
|
|
|
<android.support.v7.widget.RecyclerView
|
|
android:id="@+id/mission_recycler"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"/>
|
|
|
|
</LinearLayout>
|