home_fragment_home_module.xml 3.17 KB
Newer Older
konghaorui committed
1 2 3 4 5 6 7 8 9 10
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.SwipeRefreshLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/home_swipe_refresh_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:clipChildren="false"
    android:clipToPadding="false">

ydl committed
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 54 55 56 57 58 59 60 61 62 63 64
<!--    <android.support.design.widget.CoordinatorLayout-->
<!--        android:id="@+id/container"-->
<!--        android:layout_width="match_parent"-->
<!--        android:layout_height="match_parent"-->
<!--        android:background="@color/home_colorBg"-->
<!--        android:clipChildren="false"-->
<!--        android:clipToPadding="false"-->
<!--        app:layout_behavior="@string/appbar_scrolling_view_behavior"-->
<!--        >-->

<!--        <android.support.design.widget.AppBarLayout-->
<!--            android:id="@+id/appbar_layout"-->
<!--            android:layout_width="match_parent"-->
<!--            android:layout_height="wrap_content"-->
<!--            android:background="@color/home_colorBg"-->
<!--            android:clipChildren="false"-->
<!--            android:clipToPadding="false"-->
<!--            android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"-->
<!--            app:elevation="0dp">-->

<!--            <android.support.design.widget.CollapsingToolbarLayout-->
<!--                android:layout_width="match_parent"-->
<!--                android:layout_height="match_parent"-->
<!--                android:clipChildren="false"-->
<!--                android:clipToPadding="false"-->
<!--                app:layout_scrollFlags="scroll|exitUntilCollapsed">-->


<!--                <include layout="@layout/home_layout_home_module_head_bg"/>-->

<!--                <include-->
<!--                    layout="@layout/home_layout_home_module_head_middle"/>-->

<!--                <android.support.v7.widget.Toolbar-->
<!--                    android:id="@+id/toolbar"-->
<!--                    android:layout_width="match_parent"-->
<!--                    android:layout_height="@dimen/home_home_title_bar_height"-->
<!--                    android:alpha="0"-->
<!--                    android:background="@android:color/white"-->
<!--                    android:tag="toolbar"-->
<!--                    android:visibility="gone"-->
<!--                    app:layout_collapseMode="pin"-->
<!--                    app:popupTheme="@style/Widget.AppCompat.Toolbar"/>-->

<!--                <include layout="@layout/home_layout_home_module_toolbar"/>-->

<!--            </android.support.design.widget.CollapsingToolbarLayout>-->
<!--        </android.support.design.widget.AppBarLayout>-->



<!--    </android.support.design.widget.CoordinatorLayout>-->

    <LinearLayout
konghaorui committed
65 66
        android:layout_width="match_parent"
        android:layout_height="match_parent"
ydl committed
67 68
        android:orientation="vertical">
        <include layout="@layout/home_layout_home_module_input" />
konghaorui committed
69 70

        <include layout="@layout/home_layout_home_module_content"/>
ydl committed
71 72
    </LinearLayout>

konghaorui committed
73 74 75


</android.support.v4.widget.SwipeRefreshLayout>