FloatingActionButton在FrameLayout中滚动识别RecyclerView的问题

时间:2017-05-11 16:40:01

标签: android android-coordinatorlayout floating-action-button

我的一个项目是使用一个通用的行为类来隐藏/显示完美的fab按钮。现在,对某些布局要求进行更改,向上滚动的show fab无效。

CoordinatorLayout设置是标准设置,它包含一个ViewPager,用于加载片段。 Fragment布局的更改导致fab show行为不再正常工作。

以下是原始工作片段布局:

<SwipeRefreshLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <RecyclerView
        android:id="@+id/list"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_below="@+id/filterMenu"
        android:clipToPadding="false" />
</SwipeRefreshLayout>

以下是新的Fragment布局,它不起作用:

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <RelativeLayout
        android:id="@+id/emptyStateView"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:translationY="@dimen/home_empty_state_y_offset">

        <ImageView
            android:id="@+id/emptyStateImage"
            android:layout_width="wrap_content"
            android:layout_height="160dp"
            android:layout_centerInParent="true"
            android:src="@drawable/home_empty_state_animation" />

    </RelativeLayout>

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

        <RecyclerView
            android:id="@+id/list"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_below="@+id/filterMenu"
            android:clipToPadding="false" />
    </SwipeRefreshLayout>
</FrameLayout>

似乎添加的FrameLayout导致了这些问题,但我不确定原因。这是一个设计问题吗?或者我错过了什么?

1 个答案:

答案 0 :(得分:3)

很好地解决了这个问题。 FloatingActionButtonCoordinatorLayout存在某种类型的错误或奇怪的内容。

FloatingActionButton.hide()使按钮可见性GONE。这似乎会导致CoordinatorLayout忽略FloatingActionButton的更多事件。这就是为什么向下滚动没有再显示按钮的原因。

解决方案是确保在调用FloatingActionButtonINVISIBLE的可见性设置为FloatingActionButton.hide()

@Override
public void onNestedScroll(CoordinatorLayout coordinatorLayout, final FloatingActionButton child,
                           View target, int dxConsumed, int dyConsumed, int dxUnconsumed, int dyUnconsumed) {
    super.onNestedScroll(coordinatorLayout, child, target, dxConsumed, dyConsumed, dxUnconsumed,
            dyUnconsumed);

    if (dyConsumed > 0 && child.getVisibility() == View.VISIBLE)
    {
        // This fixes odd issue where fab doesn't show when scrolling down. Seems like the fab
        // is being set as GONE when hidden. This causes the events on this view to be ignored
        // by the CoordinatorLayout.
        child.hide(new FloatingActionButton.OnVisibilityChangedListener() {
            @Override
            public void onShown(FloatingActionButton fab) {
                super.onShown(fab);
            }

            @Override
            public void onHidden(FloatingActionButton fab) {
                super.onHidden(fab);


                child.setVisibility(View.INVISIBLE);
            }
        });
    }
    else if (dyConsumed <= 0 && child.getVisibility() != View.VISIBLE)
    {
        child.show();
    }
}