<?xml version="1.0" encoding="utf-8"?>
|
<layout xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:orientation="vertical">
|
|
<include
|
android:id="@+id/include_status_bar"
|
layout="@layout/item_status_bar_mvvm" />
|
|
<include
|
android:id="@+id/include_top_bar"
|
layout="@layout/navigation_top_bar_mvvm" />
|
|
|
<FrameLayout
|
android:layout_width="match_parent"
|
android:layout_height="match_parent">
|
|
<ImageView
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:background="@drawable/ic_spike" />
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:orientation="vertical">
|
|
<androidx.recyclerview.widget.RecyclerView
|
android:id="@+id/time_spikrv"
|
android:layout_width="wrap_content"
|
android:layout_height="55dp"
|
android:layout_gravity="center_horizontal" />
|
|
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
|
android:id="@+id/time_goodssrl"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent">
|
|
<androidx.recyclerview.widget.RecyclerView
|
android:id="@+id/time_goodsrv"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent" />
|
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
|
</LinearLayout>
|
</FrameLayout>
|
</LinearLayout>
|
</layout>
|