tests_testhome_activity.xml 1.12 KB
Newer Older
1
<?xml version="1.0" encoding="utf-8"?>
2
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 4 5
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        xmlns:app="http://schemas.android.com/apk/res-auto"
6 7 8 9 10 11 12
        android:orientation="vertical"
        >

    <include
            layout="@layout/tests_testhome_bar"
            android:layout_width="match_parent"
            android:layout_height="48dp" />
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30

    <android.support.v4.widget.SwipeRefreshLayout
        android:id="@+id/swipe_refresh_layout"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <FrameLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent">

            <android.support.v7.widget.RecyclerView
                android:id="@+id/recyclerview"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:visibility="gone" />

        </FrameLayout>
    </android.support.v4.widget.SwipeRefreshLayout>
31
</LinearLayout>