使用RecyclerView在CoordinatorLayout中不会向上推动FloatingActionButton

时间:2017-01-11 13:15:02

标签: android android-layout android-recyclerview floating-action-button

我在CoordinatorLayout中使用RecyclerView和FloatingActionButton(FAB)。在详细介绍之前,这就是我想要实现的目标。

enter image description here

此布局包含使用RecyclerView的项目列表,底部有一个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:id="@+id/layout_main_container">

      <FrameLayout
        android:id="@+id/layout_custom_recycler"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
        app:layout_scrollFlags="scroll|enterAlways"
        app:layout_behavior="@string/appbar_scrolling_view_behavior">

            <TextView android:id="@+id/custom_view"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:gravity="center_vertical|center_horizontal"
                android:textColor="@android:color/darker_gray"
                android:layout_gravity="center" />

              <com.custom.CustomRecycler
                android:id="@+id/custom_recycler"
                android:layout_height="match_parent"
                android:layout_width="match_parent"
                android:layout_gravity="center"
                android:visibility="visible"
                app:layout_behavior="@string/appbar_scrolling_view_behavior" />

               <android.support.design.widget.FloatingActionButton
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_margin="@dimen/activity_vertical_margin"
                android:clickable="true"
                app:srcCompat="@drawable/icon_add"
                android:id="@+id/add"
                android:layout_gravity="bottom|right"
                app:layout_behavior="@string/appbar_scrolling_view_behavior"
                app:layout_anchor="@id/list_custom_recycler"
                app:layout_anchorGravity="bottom|right|end"
                />

            <TextView
                android:id="@+id/save"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:gravity="center_horizontal|center_vertical"
                android:layout_gravity="bottom|end"
                android:text="Save"
                android:textColor="@android:color/white"
                android:background="@android:color/holo_blue_bright"
                android:padding="10dp"
                app:layout_behavior="@string/appbar_scrolling_view_behavior"
                android:visibility="visible"
                 />

       </FrameLayout>

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

我正在做的是什么,它会阻止FAB在显示文本时向上推?

我是否需要嵌套滚动视图?有什么想法吗?

0 个答案:

没有答案