admin
2022-08-09 399ac289f80b7a40aa4210341db6b447cacdcf14
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?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>