RecyclerView和CoordinatorLayout.Behavior

时间:2017-08-03 06:19:07

标签: android android-recyclerview coordinator-layout

我想了解协调员自定义行为是如何工作的,所以我做了一个项目,当一个recyclerview滚动时,按钮Y标度会改变。 这是我的xml布局:

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

    <android.support.v7.widget.RecyclerView
        android:id="@+id/mp_recycleview1"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@color/cardview_light_background"
        android:paddingBottom="5dp"
        app:layout_behavior="@string/appbar_scrolling_view_behavior"
        android:paddingTop="5dp"
        android:scrollbars="vertical" />

        <Button
            android:id="@+id/button2"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="@color/cardview_dark_background"
            android:backgroundTint="@color/colorPrimary"
            android:text="Button"
            app:layout_behavior=".MyBehavior"
            android:textColor="@android:color/white"
            />
</android.support.design.widget.CoordinatorLayout>

这是我的行为类

public class MyBehavior extends CoordinatorLayout.Behavior<Button> {
    private final static String TAG = "MyBehavior";

    public MyBehavior(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    @Override
    public boolean layoutDependsOn(CoordinatorLayout parent, Button child, View dependency) {
        return dependency instanceof RecyclerView;

    }

    @Override
    public void onNestedScroll(CoordinatorLayout coordinatorLayout, Button child, View target, int dxConsumed, int dyConsumed, int dxUnconsumed, int dyUnconsumed) {
        child.setScaleY(((RecyclerView)target).computeVerticalScrollOffset());


    }
}

但是当我滚动RecyclerView时没有任何反应。

1 个答案:

答案 0 :(得分:3)

站起来,

要接收onNestedScroll()次来电,您需要覆盖onStartNestedScroll才能返回true