CollapsingToolbarLayout doesn't recognize scroll fling CollapsingToolbarLayout doesn't recognize scroll fling xml xml

CollapsingToolbarLayout doesn't recognize scroll fling


I had exactly the same issue with CollapsingToolbarLayout with ImageView inside and NestedScrollView. The fling scroll stops when finger is released.

However, I've noticed something strange. If you start scrolling with your finger from a view with OnClickListener (e.g. Button), the fling scrolling works perfectly.

Thus I fixed it with a weird solution. Set OnClickListener (that does nothing) on the direct child of NestedScrollView. Then it works perfectly!

<android.support.v4.widget.NestedScrollView    xmlns:android="http://schemas.android.com/apk/res/android"   xmlns:app="http://schemas.android.com/apk/res-auto"   xmlns:tools="http://schemas.android.com/tools"   android:layout_width="match_parent"   android:layout_height="match_parent"   app:layout_behavior="@string/appbar_scrolling_view_behavior">  <LinearLayout      android:id="@+id/content_container"      android:layout_width="match_parent"      android:layout_height="wrap_content"      android:orientation="vertical">    <!-- Page Content -->  </LinearLayout></android.support.v4.widget.NestedScrollView>

Give the direct child (LinearLayout) an id and set OnClickListener in Activity

ViewGroup mContentContainer = (ViewGroup) findViewById(R.id.content_container);    mContentContainer.setOnClickListener(this);@Overridepublic void onClick(View view) {    int viewId = view.getId();}

Notes:

Tested using Support Design Library 25.0.1

CollapsingToolbarLayout with scrollFlags="scroll|enterAlwaysCollapsed"


I know this question was asked over a year ago but this issue still doesn't seem to be resolved in the Support/Design libraries. You can star this issue so it moves farther up in the priority queue.

That said, I tried most of the posted solutions for this, including the one by patrick-iv with no success. The only way I was able to get to work was to mimic the fling and call it programmatically if a certain set of conditions were detected in onPreNestedScroll(). In the few hours of my debugging I noticed that the onNestedFling() was never called on an upward (scroll down) fling and seemed to be consumed prematurely. I can't say with 100% certainty this will work for 100% of implementations but it works well enough for my uses so I ended up settling for this, even though it's pretty hacky and definitely not what I wanted to do.

public class NestedScrollViewBehavior extends AppBarLayout.Behavior {    // Lower value means fling action is more easily triggered    static final int MIN_DY_DELTA = 4;    // Lower values mean less velocity, higher means higher velocity    static final int FLING_FACTOR = 20;    int mTotalDy;    int mPreviousDy;    WeakReference<AppBarLayout> mPreScrollChildRef;    @Override    public void onNestedPreScroll(CoordinatorLayout coordinatorLayout, AppBarLayout child,                                  View target, int dx, int dy, int[] consumed) {        super.onNestedPreScroll(coordinatorLayout, child, target, dx, dy, consumed);        // Reset the total fling delta distance if the user starts scrolling back up        if(dy < 0) {            mTotalDy = 0;        }        // Only track move distance if the movement is positive (since the bug is only present        // in upward flings), equal to the consumed value and the move distance is greater        // than the minimum difference value        if(dy > 0 && consumed[1] == dy && MIN_DY_DELTA < Math.abs(mPreviousDy - dy)) {            mPreScrollChildRef = new WeakReference<>(child);            mTotalDy += dy * FLING_FACTOR;        }        mPreviousDy = dy;    }    @Override    public boolean onStartNestedScroll(CoordinatorLayout parent, AppBarLayout child,                                       View directTargetChild, View target, int nestedScrollAxes) {        // Stop any previous fling animations that may be running        onNestedFling(parent, child, target, 0, 0, false);        return super.onStartNestedScroll(parent, child, directTargetChild, target, nestedScrollAxes);    }    @Override    public void onStopNestedScroll(CoordinatorLayout parent, AppBarLayout abl, View target) {        if(mTotalDy > 0 && mPreScrollChildRef != null && mPreScrollChildRef.get() != null) {            // Programmatically trigger fling if all conditions are met            onNestedFling(parent, mPreScrollChildRef.get(), target, 0, mTotalDy, false);            mTotalDy = 0;            mPreviousDy = 0;            mPreScrollChildRef = null;        }        super.onStopNestedScroll(parent, abl, target);    }}

And apply it to the AppBar

AppBarLayout scrollView = (AppBarLayout)findViewById(R.id.appbar);CoordinatorLayout.LayoutParams params = (CoordinatorLayout.LayoutParams)scrollView.getLayoutParams();params.setBehavior(new NestedScrollViewBehavior());

CheeseSquare demo:BeforeAfter


I tried Floofer's solution but it was still not good enough for me. So I came up with a better version of his Behavior. The AppBarLayout now expands and collapses smoothly when flinging.

Note: I used reflection to hack my way into this, so it may not work for perfectly with a version of Android Design library different from 25.0.0.

public class SmoothScrollBehavior extends AppBarLayout.Behavior {    private static final String TAG = "SmoothScrollBehavior";    //The higher this value is, the faster the user must scroll for the AppBarLayout to collapse by itself    private static final int SCROLL_SENSIBILITY = 5;    //The real fling velocity calculation seems complex, in this case it is simplified with a multiplier    private static final int FLING_VELOCITY_MULTIPLIER = 60;    private boolean alreadyFlung = false;    private boolean request = false;    private boolean expand = false;    private int velocity = 0;    private int nestedScrollViewId;    public SmoothScrollBehavior(int nestedScrollViewId) {        this.nestedScrollViewId = nestedScrollViewId;    }    @Override    public void onNestedPreScroll(CoordinatorLayout coordinatorLayout, AppBarLayout child,                                  View target, int dx, int dy, int[] consumed) {        super.onNestedPreScroll(coordinatorLayout, child, target, dx, dy, consumed);        if(Math.abs(dy) >= SCROLL_SENSIBILITY) {            request = true;            expand = dy < 0;            velocity = dy * FLING_VELOCITY_MULTIPLIER;        } else {            request = false;        }    }    @Override    public boolean onStartNestedScroll(CoordinatorLayout parent, AppBarLayout child,                                       View directTargetChild, View target, int nestedScrollAxes) {        request = false;        return super.onStartNestedScroll(parent, child, directTargetChild, target, nestedScrollAxes);    }    @Override    public void onStopNestedScroll(CoordinatorLayout coordinatorLayout, AppBarLayout appBarLayout, View target) {        if(request) {            NestedScrollView nestedScrollView = (NestedScrollView) coordinatorLayout.findViewById(nestedScrollViewId);            if (expand) {                //No need to force expand if it is already ready expanding                if (nestedScrollView.getScrollY() > 0) {                    int finalY = getPredictedScrollY(nestedScrollView);                    if (finalY <= 0) {                        //since onNestedFling does not work to expand the AppBarLayout, we need to manually expand it                        expandAppBarLayoutWithVelocity(coordinatorLayout, appBarLayout, velocity);                    }                }            } else {                //onNestedFling will collapse the AppBarLayout with an animation time relative to the velocity                onNestedFling(coordinatorLayout, appBarLayout, target, 0, velocity, true);                if(!alreadyFlung) {                    //TODO wait for AppBarLayout to be collapsed before scrolling for even smoother visual                    nestedScrollView.fling(velocity);                }            }        }        alreadyFlung = false;        super.onStopNestedScroll(coordinatorLayout, appBarLayout, target);    }    private int getPredictedScrollY(NestedScrollView nestedScrollView) {        int finalY = 0;        try {            //With reflection, we can get the ScrollerCompat from the NestedScrollView to predict where the scroll will end            Field scrollerField = nestedScrollView.getClass().getDeclaredField("mScroller");            scrollerField.setAccessible(true);            Object object = scrollerField.get(nestedScrollView);            ScrollerCompat scrollerCompat = (ScrollerCompat) object;            finalY = scrollerCompat.getFinalY();        } catch (Exception e ) {            e.printStackTrace();            //If the reflection fails, it will return 0, which means the scroll has reached top            Log.e(TAG, "Failed to get mScroller field from NestedScrollView through reflection. Will assume that the scroll reached the top.");        }        return finalY;    }    private void expandAppBarLayoutWithVelocity(CoordinatorLayout coordinatorLayout, AppBarLayout appBarLayout, float velocity) {        try {            //With reflection, we can call the private method of Behavior that expands the AppBarLayout with specified velocity            Method animateOffsetTo = getClass().getSuperclass().getDeclaredMethod("animateOffsetTo", CoordinatorLayout.class, AppBarLayout.class, int.class, float.class);            animateOffsetTo.setAccessible(true);            animateOffsetTo.invoke(this, coordinatorLayout, appBarLayout, 0, velocity);        } catch (Exception e) {            e.printStackTrace();            //If the reflection fails, we fall back to the public method setExpanded that expands the AppBarLayout with a fixed velocity            Log.e(TAG, "Failed to get animateOffsetTo method from AppBarLayout.Behavior through reflection. Falling back to setExpanded.");            appBarLayout.setExpanded(true, true);        }    }    @Override    public boolean onNestedPreFling(CoordinatorLayout coordinatorLayout, AppBarLayout child, View target, float velocityX, float velocityY) {        alreadyFlung = true;        return super.onNestedPreFling(coordinatorLayout, child, target, velocityX, velocityY);    }}

To use it, set a new Behavior to your AppBarLayout.

AppBarLayout appBarLayout = (AppBarLayout) findViewById(R.id.app_bar);CoordinatorLayout.LayoutParams params = (CoordinatorLayout.LayoutParams) appBarLayout.getLayoutParams();params.setBehavior(new SmoothScrollBehavior(R.id.nested_scroll_view));