当RecyclerView为空时阻止工具栏折叠

时间:2015-10-31 21:47:41

标签: android android-design-library androiddesignsupport android-collapsingtoolbarlayout

我有CollapsingToolbarLayout,它依赖于在ViewPager中的Fragment中滚动RecyclerView。问题是ViewPager太高而且超出了CoordinatorLayout的范围,无论它是否具有“match_parent”或“wrap_content”layout_height。因此,即使RecyclerView只有很少的项目,ViewPager也会滚动。 而其他问题是我无法在ViewPager中创建片段中的静态元素。我想让FAB浮动在RecyclerView上,但是FAB位于屏幕的下限之下,直到我将它向上滚动。

这里有一些代码

主要布局:

<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
android:background="@android:color/white">

<android.support.v4.view.ViewPager
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/viewPager"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"/>

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

    <android.support.design.widget.CollapsingToolbarLayout
        android:layout_width="match_parent"
        android:layout_height="122dp"
        android:fitsSystemWindows="true"
        android:id="@+id/collapsingToolbar"
        app:expandedTitleMarginStart="56dp"
        app:layout_scrollFlags="scroll|enterAlways">

        <android.support.v7.widget.Toolbar
            android:layout_height="?attr/actionBarSize"
            android:layout_width="match_parent"
            android:id="@+id/toolbar"
            app:layout_collapseMode="pin"/>

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

    <android.support.design.widget.TabLayout
        android:layout_height="?attr/actionBarSize"
        android:layout_width="match_parent"
        android:layout_gravity="bottom"
        android:id="@+id/tabLayout"
        android:background="@color/default_green"
        app:tabIndicatorColor="@color/white"/>

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

片段:

<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">

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


<android.support.design.widget.FloatingActionButton
    android:id="@+id/bookMark"
    android:fitsSystemWindows="true"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/ic_shape3x"
    android:layout_gravity="end|bottom"
    app:fabSize="normal"
    app:backgroundTint="@color/default_green"
    android:layout_margin="16dp"
    app:elevation="4sp"
    app:borderWidth="0dp"
    android:contentDescription=""/>
</android.support.design.widget.CoordinatorLayout>

1 个答案:

答案 0 :(得分:2)

我设法以这种方式解决了这个问题。首先,我像解释here一样阻止了AppBarLayout的滚动。 然后我将FAB直接放置到CoordinatorLayout,并将其隐藏到ViewPager滚动屏幕,如here。 此外,我想要一个EditText浮动在ViewPager中的一个片段上。我将它放在CoordinatorLayout中,并在ViewPager滚动时上下滑动。