折叠工具栏布局不会与recyclerview滚动折叠

时间:2019-07-13 17:48:11

标签: android android-recyclerview android-collapsingtoolbarlayout

我想实现折叠的工具栏布局,该布局会折叠并随着recyclerview滚动出现。但这似乎不起作用。折叠式工具栏布局保持固定为80dp的固定高度。 (这里是回收站视图)

这是我的xml代码:

  <?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    tools:context=".HomeFragment"
    android:background="#ffffff"
    android:layout_marginStart="2dp"
    android:layout_marginEnd="2dp">


    <android.support.design.widget.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/appBarLayout"
        >


        <android.support.design.widget.CollapsingToolbarLayout
            android:layout_width="match_parent"
            android:layout_height="80dp"
            android:background="@color/colorPrimary"
            app:layout_scrollFlags="scroll|enterAlways"
            >

        </android.support.design.widget.CollapsingToolbarLayout>


    </android.support.design.widget.AppBarLayout>



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

        <im.ene.toro.widget.Container
            xmlns:android="http://schemas.android.com/apk/res/android"
            android:id="@+id/home_blog_list"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:layout_behavior="android.support.design.widget.AppBarLayout$ScrollingViewBehavior"
            />


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



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

我缺少什么吗?还是我需要使用该xml设计的代码来实现某些功能?请让我知道。

0 个答案:

没有答案