admin
2021-02-03 1981dee5aec45793d3c4ebdbc4e637528c71b3c5
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
52
53
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/theme"
    android:orientation="vertical">
 
    <include layout="@layout/no_network" />
 
    <include
        android:id="@+id/include_notice"
        layout="@layout/notice" />
 
    <LinearLayout
        android:id="@+id/ll_container"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:orientation="vertical"></LinearLayout>
 
    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:descendantFocusability="blocksDescendants">
 
        <android.support.v4.widget.SwipeRefreshLayout
            android:id="@+id/rl_recommend"
            android:layout_width="match_parent"
            android:layout_height="match_parent">
 
 
            <android.support.v7.widget.RecyclerView
                android:id="@+id/rv_recommend"
                android:layout_width="match_parent"
                android:layout_height="match_parent">
 
            </android.support.v7.widget.RecyclerView>
 
 
        </android.support.v4.widget.SwipeRefreshLayout>
 
 
        <ImageView
            android:id="@+id/iv_right_ad"
            android:layout_width="wrap_content"
            android:layout_height="80dp"
            android:layout_gravity="center_vertical|right"
            android:layout_marginTop="100dp"
            android:visibility="gone" />
    </FrameLayout>
 
 
</LinearLayout>