/* * Copyright (C) 2015 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package android.support.design.widget; import android.content.Context; import android.content.res.TypedArray; import android.os.Parcel; import android.os.Parcelable; import android.support.annotation.IntDef; import android.support.design.R; import android.support.v4.view.MotionEventCompat; import android.support.v4.view.ViewCompat; import android.support.v4.view.WindowInsetsCompat; import android.util.AttributeSet; import android.view.MotionEvent; import android.view.View; import android.view.ViewConfiguration; import android.view.ViewGroup; import android.view.animation.Interpolator; import android.widget.LinearLayout; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.ref.WeakReference; import java.util.ArrayList; import java.util.List; /** * AppBarLayout is a vertical {@link LinearLayout} which implements many of the features of * material designs app bar concept, namely scrolling gestures. *

* Children should provide their desired scrolling behavior through * {@link LayoutParams#setScrollFlags(int)} and the associated layout xml attribute: * {@code app:layout_scrollFlags}. * *

* This view depends heavily on being used as a direct child within a {@link CoordinatorLayout}. * If you use AppBarLayout within a different {@link ViewGroup}, most of it's functionality will * not work. *

* AppBarLayout also requires a separate scrolling sibling in order to know when to scroll. * The binding is done through the {@link ScrollingViewBehavior} behavior class, meaning that you * should set your scrolling view's behavior to be an instance of {@link ScrollingViewBehavior}. * A string resource containing the full class name is available. * *

 * <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.support.v4.widget.NestedScrollView
 *             android:layout_width="match_parent"
 *             android:layout_height="match_parent"
 *             app:layout_behavior="@string/appbar_scrolling_view_behavior">
 *
 *         <!-- Your scrolling content -->
 *
 *     </android.support.v4.widget.NestedScrollView>
 *
 *     <android.support.design.widget.AppBarLayout
 *             android:layout_height="wrap_content"
 *             android:layout_width="match_parent">
 *
 *         <android.support.v7.widget.Toolbar
 *                 ...
 *                 app:layout_scrollFlags="scroll|enterAlways"/>
 *
 *         <android.support.design.widget.TabLayout
 *                 ...
 *                 app:layout_scrollFlags="scroll|enterAlways"/>
 *
 *     </android.support.design.widget.AppBarLayout>
 *
 * </android.support.design.widget.CoordinatorLayout>
 * 
* * @see * http://www.google.com/design/spec/layout/structure.html#structure-app-bar */ @CoordinatorLayout.DefaultBehavior(AppBarLayout.Behavior.class) public class AppBarLayout extends LinearLayout { private static final int PENDING_ACTION_NONE = 0x0; private static final int PENDING_ACTION_EXPANDED = 0x1; private static final int PENDING_ACTION_COLLAPSED = 0x2; private static final int PENDING_ACTION_ANIMATE_ENABLED = 0x4; /** * Interface definition for a callback to be invoked when an {@link AppBarLayout}'s vertical * offset changes. */ public interface OnOffsetChangedListener { /** * Called when the {@link AppBarLayout}'s layout offset has been changed. This allows * child views to implement custom behavior based on the offset (for instance pinning a * view at a certain y value). * * @param appBarLayout the {@link AppBarLayout} which offset has changed * @param verticalOffset the vertical offset for the parent {@link AppBarLayout}, in px */ void onOffsetChanged(AppBarLayout appBarLayout, int verticalOffset); } private static final int INVALID_SCROLL_RANGE = -1; private int mTotalScrollRange = INVALID_SCROLL_RANGE; private int mDownPreScrollRange = INVALID_SCROLL_RANGE; private int mDownScrollRange = INVALID_SCROLL_RANGE; boolean mHaveChildWithInterpolator; private float mTargetElevation; private int mPendingAction = PENDING_ACTION_NONE; private WindowInsetsCompat mLastInsets; private final List mListeners; public AppBarLayout(Context context) { this(context, null); } public AppBarLayout(Context context, AttributeSet attrs) { super(context, attrs); setOrientation(VERTICAL); ThemeUtils.checkAppCompatTheme(context); TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.AppBarLayout, 0, R.style.Widget_Design_AppBarLayout); mTargetElevation = a.getDimensionPixelSize(R.styleable.AppBarLayout_elevation, 0); setBackgroundDrawable(a.getDrawable(R.styleable.AppBarLayout_android_background)); if (a.hasValue(R.styleable.AppBarLayout_expanded)) { setExpanded(a.getBoolean(R.styleable.AppBarLayout_expanded, false)); } a.recycle(); // Use the bounds view outline provider so that we cast a shadow, even without a background ViewUtils.setBoundsViewOutlineProvider(this); mListeners = new ArrayList<>(); ViewCompat.setElevation(this, mTargetElevation); ViewCompat.setOnApplyWindowInsetsListener(this, new android.support.v4.view.OnApplyWindowInsetsListener() { @Override public WindowInsetsCompat onApplyWindowInsets(View v, WindowInsetsCompat insets) { setWindowInsets(insets); return insets.consumeSystemWindowInsets(); } }); } /** * Add a listener that will be called when the offset of this {@link AppBarLayout} changes. * * @param listener The listener that will be called when the offset changes.] * * @see #removeOnOffsetChangedListener(OnOffsetChangedListener) */ public void addOnOffsetChangedListener(OnOffsetChangedListener listener) { if (listener != null && !mListeners.contains(listener)) { mListeners.add(listener); } } /** * Remove the previously added {@link OnOffsetChangedListener}. * * @param listener the listener to remove. */ public void removeOnOffsetChangedListener(OnOffsetChangedListener listener) { if (listener != null) { mListeners.remove(listener); } } @Override protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { super.onMeasure(widthMeasureSpec, heightMeasureSpec); invalidateScrollRanges(); } @Override protected void onLayout(boolean changed, int l, int t, int r, int b) { super.onLayout(changed, l, t, r, b); invalidateScrollRanges(); mHaveChildWithInterpolator = false; for (int i = 0, z = getChildCount(); i < z; i++) { final View child = getChildAt(i); final LayoutParams childLp = (LayoutParams) child.getLayoutParams(); final Interpolator interpolator = childLp.getScrollInterpolator(); if (interpolator != null) { mHaveChildWithInterpolator = true; break; } } } private void invalidateScrollRanges() { // Invalidate the scroll ranges mTotalScrollRange = INVALID_SCROLL_RANGE; mDownPreScrollRange = INVALID_SCROLL_RANGE; mDownScrollRange = INVALID_SCROLL_RANGE; } @Override public void setOrientation(int orientation) { if (orientation != VERTICAL) { throw new IllegalArgumentException("AppBarLayout is always vertical and does" + " not support horizontal orientation"); } super.setOrientation(orientation); } /** * Sets whether this {@link AppBarLayout} is expanded or not, animating if it has already * been laid out. * *

As with {@link AppBarLayout}'s scrolling, this method relies on this layout being a * direct child of a {@link CoordinatorLayout}.

* * @param expanded true if the layout should be fully expanded, false if it should * be fully collapsed * * @attr ref android.support.design.R.styleable#AppBarLayout_expanded */ public void setExpanded(boolean expanded) { setExpanded(expanded, ViewCompat.isLaidOut(this)); } /** * Sets whether this {@link AppBarLayout} is expanded or not. * *

As with {@link AppBarLayout}'s scrolling, this method relies on this layout being a * direct child of a {@link CoordinatorLayout}.

* * @param expanded true if the layout should be fully expanded, false if it should * be fully collapsed * @param animate Whether to animate to the new state * * @attr ref android.support.design.R.styleable#AppBarLayout_expanded */ public void setExpanded(boolean expanded, boolean animate) { mPendingAction = (expanded ? PENDING_ACTION_EXPANDED : PENDING_ACTION_COLLAPSED) | (animate ? PENDING_ACTION_ANIMATE_ENABLED : 0); requestLayout(); } @Override protected boolean checkLayoutParams(ViewGroup.LayoutParams p) { return p instanceof LayoutParams; } @Override protected LayoutParams generateDefaultLayoutParams() { return new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT); } @Override public LayoutParams generateLayoutParams(AttributeSet attrs) { return new LayoutParams(getContext(), attrs); } @Override protected LayoutParams generateLayoutParams(ViewGroup.LayoutParams p) { if (p instanceof LinearLayout.LayoutParams) { return new LayoutParams((LinearLayout.LayoutParams) p); } else if (p instanceof MarginLayoutParams) { return new LayoutParams((MarginLayoutParams) p); } return new LayoutParams(p); } private boolean hasChildWithInterpolator() { return mHaveChildWithInterpolator; } /** * Returns the scroll range of all children. * * @return the scroll range in px */ public final int getTotalScrollRange() { if (mTotalScrollRange != INVALID_SCROLL_RANGE) { return mTotalScrollRange; } int range = 0; for (int i = 0, z = getChildCount(); i < z; i++) { final View child = getChildAt(i); final LayoutParams lp = (LayoutParams) child.getLayoutParams(); final int childHeight = child.getMeasuredHeight(); final int flags = lp.mScrollFlags; if ((flags & LayoutParams.SCROLL_FLAG_SCROLL) != 0) { // We're set to scroll so add the child's height range += childHeight + lp.topMargin + lp.bottomMargin; if ((flags & LayoutParams.SCROLL_FLAG_EXIT_UNTIL_COLLAPSED) != 0) { // For a collapsing scroll, we to take the collapsed height into account. // We also break straight away since later views can't scroll beneath // us range -= ViewCompat.getMinimumHeight(child); break; } } else { // As soon as a view doesn't have the scroll flag, we end the range calculation. // This is because views below can not scroll under a fixed view. break; } } return mTotalScrollRange = (range - getTopInset()); } private boolean hasScrollableChildren() { return getTotalScrollRange() != 0; } /** * Return the scroll range when scrolling up from a nested pre-scroll. */ private int getUpNestedPreScrollRange() { return getTotalScrollRange(); } /** * Return the scroll range when scrolling down from a nested pre-scroll. */ private int getDownNestedPreScrollRange() { if (mDownPreScrollRange != INVALID_SCROLL_RANGE) { // If we already have a valid value, return it return mDownPreScrollRange; } int range = 0; for (int i = getChildCount() - 1; i >= 0; i--) { final View child = getChildAt(i); final LayoutParams lp = (LayoutParams) child.getLayoutParams(); final int childHeight = child.getMeasuredHeight(); final int flags = lp.mScrollFlags; if ((flags & LayoutParams.FLAG_QUICK_RETURN) == LayoutParams.FLAG_QUICK_RETURN) { // First take the margin into account range += lp.topMargin + lp.bottomMargin; // The view has the quick return flag combination... if ((flags & LayoutParams.SCROLL_FLAG_ENTER_ALWAYS_COLLAPSED) != 0) { // If they're set to enter collapsed, use the minimum height range += ViewCompat.getMinimumHeight(child); } else { // Else use the full height range += childHeight; } } else if (range > 0) { // If we've hit an non-quick return scrollable view, and we've already hit a // quick return view, return now break; } } return mDownPreScrollRange = range; } /** * Return the scroll range when scrolling down from a nested scroll. */ private int getDownNestedScrollRange() { if (mDownScrollRange != INVALID_SCROLL_RANGE) { // If we already have a valid value, return it return mDownScrollRange; } int range = 0; for (int i = 0, z = getChildCount(); i < z; i++) { final View child = getChildAt(i); final LayoutParams lp = (LayoutParams) child.getLayoutParams(); int childHeight = child.getMeasuredHeight(); childHeight += lp.topMargin + lp.bottomMargin; final int flags = lp.mScrollFlags; if ((flags & LayoutParams.SCROLL_FLAG_SCROLL) != 0) { // We're set to scroll so add the child's height range += childHeight; if ((flags & LayoutParams.SCROLL_FLAG_EXIT_UNTIL_COLLAPSED) != 0) { // For a collapsing exit scroll, we to take the collapsed height into account. // We also return the range straight away since later views can't scroll // beneath us return mDownScrollRange = (range - ViewCompat.getMinimumHeight(child)); } } else { // As soon as a view doesn't have the scroll flag, we end the range calculation. // This is because views below can not scroll under a fixed view. break; } } return mDownScrollRange = range; } final int getMinimumHeightForVisibleOverlappingContent() { final int topInset = mLastInsets != null ? mLastInsets.getSystemWindowInsetTop() : 0; final int minHeight = ViewCompat.getMinimumHeight(this); if (minHeight != 0) { // If this layout has a min height, use it (doubled) return (minHeight * 2) + topInset; } // Otherwise, we'll use twice the min height of our last child final int childCount = getChildCount(); return childCount >= 1 ? (ViewCompat.getMinimumHeight(getChildAt(childCount - 1)) * 2) + topInset : 0; } /** * Set the elevation value to use when this {@link AppBarLayout} should be elevated * above content. *

* This method does not do anything itself. A typical use for this method is called from within * an {@link OnOffsetChangedListener} when the offset has changed in such a way to require an * elevation change. * * @param elevation the elevation value to use. * * @see ViewCompat#setElevation(View, float) */ public void setTargetElevation(float elevation) { mTargetElevation = elevation; } /** * Returns the elevation value to use when this {@link AppBarLayout} should be elevated * above content. */ public float getTargetElevation() { return mTargetElevation; } private int getPendingAction() { return mPendingAction; } private void resetPendingAction() { mPendingAction = PENDING_ACTION_NONE; } private int getTopInset() { return mLastInsets != null ? mLastInsets.getSystemWindowInsetTop() : 0; } private void setWindowInsets(WindowInsetsCompat insets) { // Invalidate the total scroll range... mTotalScrollRange = INVALID_SCROLL_RANGE; mLastInsets = insets; // Now dispatch them to our children for (int i = 0, z = getChildCount(); i < z; i++) { final View child = getChildAt(i); insets = ViewCompat.dispatchApplyWindowInsets(child, insets); if (insets.isConsumed()) { break; } } } public static class LayoutParams extends LinearLayout.LayoutParams { /** @hide */ @IntDef(flag=true, value={ SCROLL_FLAG_SCROLL, SCROLL_FLAG_EXIT_UNTIL_COLLAPSED, SCROLL_FLAG_ENTER_ALWAYS, SCROLL_FLAG_ENTER_ALWAYS_COLLAPSED, SCROLL_FLAG_SNAP }) @Retention(RetentionPolicy.SOURCE) public @interface ScrollFlags {} /** * The view will be scroll in direct relation to scroll events. This flag needs to be * set for any of the other flags to take effect. If any sibling views * before this one do not have this flag, then this value has no effect. */ public static final int SCROLL_FLAG_SCROLL = 0x1; /** * When exiting (scrolling off screen) the view will be scrolled until it is * 'collapsed'. The collapsed height is defined by the view's minimum height. * * @see ViewCompat#getMinimumHeight(View) * @see View#setMinimumHeight(int) */ public static final int SCROLL_FLAG_EXIT_UNTIL_COLLAPSED = 0x2; /** * When entering (scrolling on screen) the view will scroll on any downwards * scroll event, regardless of whether the scrolling view is also scrolling. This * is commonly referred to as the 'quick return' pattern. */ public static final int SCROLL_FLAG_ENTER_ALWAYS = 0x4; /** * An additional flag for 'enterAlways' which modifies the returning view to * only initially scroll back to it's collapsed height. Once the scrolling view has * reached the end of it's scroll range, the remainder of this view will be scrolled * into view. The collapsed height is defined by the view's minimum height. * * @see ViewCompat#getMinimumHeight(View) * @see View#setMinimumHeight(int) */ public static final int SCROLL_FLAG_ENTER_ALWAYS_COLLAPSED = 0x8; /** * Upon a scroll ending, if the view is only partially visible then it will be snapped * and scrolled to it's closest edge. For example, if the view only has it's bottom 25% * displayed, it will be scrolled off screen completely. Conversely, if it's bottom 75% * is visible then it will be scrolled fully into view. */ public static final int SCROLL_FLAG_SNAP = 0x10; /** * Internal flags which allows quick checking features */ static final int FLAG_QUICK_RETURN = SCROLL_FLAG_SCROLL | SCROLL_FLAG_ENTER_ALWAYS; static final int FLAG_SNAP = SCROLL_FLAG_SCROLL | SCROLL_FLAG_SNAP; int mScrollFlags = SCROLL_FLAG_SCROLL; Interpolator mScrollInterpolator; public LayoutParams(Context c, AttributeSet attrs) { super(c, attrs); TypedArray a = c.obtainStyledAttributes(attrs, R.styleable.AppBarLayout_LayoutParams); mScrollFlags = a.getInt(R.styleable.AppBarLayout_LayoutParams_layout_scrollFlags, 0); if (a.hasValue(R.styleable.AppBarLayout_LayoutParams_layout_scrollInterpolator)) { int resId = a.getResourceId( R.styleable.AppBarLayout_LayoutParams_layout_scrollInterpolator, 0); mScrollInterpolator = android.view.animation.AnimationUtils.loadInterpolator( c, resId); } a.recycle(); } public LayoutParams(int width, int height) { super(width, height); } public LayoutParams(int width, int height, float weight) { super(width, height, weight); } public LayoutParams(ViewGroup.LayoutParams p) { super(p); } public LayoutParams(MarginLayoutParams source) { super(source); } public LayoutParams(LinearLayout.LayoutParams source) { super(source); } public LayoutParams(LayoutParams source) { super(source); mScrollFlags = source.mScrollFlags; mScrollInterpolator = source.mScrollInterpolator; } /** * Set the scrolling flags. * * @param flags bitwise int of {@link #SCROLL_FLAG_SCROLL}, * {@link #SCROLL_FLAG_EXIT_UNTIL_COLLAPSED}, {@link #SCROLL_FLAG_ENTER_ALWAYS}, * {@link #SCROLL_FLAG_ENTER_ALWAYS_COLLAPSED} and {@link #SCROLL_FLAG_SNAP }. * * @see #getScrollFlags() * * @attr ref android.support.design.R.styleable#AppBarLayout_LayoutParams_layout_scrollFlags */ public void setScrollFlags(@ScrollFlags int flags) { mScrollFlags = flags; } /** * Returns the scrolling flags. * * @see #setScrollFlags(int) * * @attr ref android.support.design.R.styleable#AppBarLayout_LayoutParams_layout_scrollFlags */ @ScrollFlags public int getScrollFlags() { return mScrollFlags; } /** * Set the interpolator to when scrolling the view associated with this * {@link LayoutParams}. * * @param interpolator the interpolator to use, or null to use normal 1-to-1 scrolling. * * @attr ref android.support.design.R.styleable#AppBarLayout_LayoutParams_layout_scrollInterpolator * @see #getScrollInterpolator() */ public void setScrollInterpolator(Interpolator interpolator) { mScrollInterpolator = interpolator; } /** * Returns the {@link Interpolator} being used for scrolling the view associated with this * {@link LayoutParams}. Null indicates 'normal' 1-to-1 scrolling. * * @attr ref android.support.design.R.styleable#AppBarLayout_LayoutParams_layout_scrollInterpolator * @see #setScrollInterpolator(Interpolator) */ public Interpolator getScrollInterpolator() { return mScrollInterpolator; } } /** * The default {@link Behavior} for {@link AppBarLayout}. Implements the necessary nested * scroll handling with offsetting. */ public static class Behavior extends HeaderBehavior { private static final int INVALID_POINTER = -1; private static final int INVALID_POSITION = -1; private int mOffsetDelta; private boolean mSkipNestedPreScroll; private boolean mWasFlung; private ValueAnimatorCompat mAnimator; private int mOffsetToChildIndexOnLayout = INVALID_POSITION; private boolean mOffsetToChildIndexOnLayoutIsMinHeight; private float mOffsetToChildIndexOnLayoutPerc; private boolean mIsBeingDragged; private int mActivePointerId = INVALID_POINTER; private int mLastMotionY; private int mTouchSlop = -1; private WeakReference mLastNestedScrollingChildRef; public Behavior() {} public Behavior(Context context, AttributeSet attrs) { super(context, attrs); } @Override public boolean onStartNestedScroll(CoordinatorLayout parent, AppBarLayout child, View directTargetChild, View target, int nestedScrollAxes) { // Return true if we're nested scrolling vertically, and we have scrollable children // and the scrolling view is big enough to scroll final boolean started = (nestedScrollAxes & ViewCompat.SCROLL_AXIS_VERTICAL) != 0 && child.hasScrollableChildren() && parent.getHeight() - directTargetChild.getHeight() <= child.getHeight(); if (started && mAnimator != null) { // Cancel any offset animation mAnimator.cancel(); } // A new nested scroll has started so clear out the previous ref mLastNestedScrollingChildRef = null; return started; } @Override public void onNestedPreScroll(CoordinatorLayout coordinatorLayout, AppBarLayout child, View target, int dx, int dy, int[] consumed) { if (dy != 0 && !mSkipNestedPreScroll) { int min, max; if (dy < 0) { // We're scrolling down min = -child.getTotalScrollRange(); max = min + child.getDownNestedPreScrollRange(); } else { // We're scrolling up min = -child.getUpNestedPreScrollRange(); max = 0; } consumed[1] = scroll(coordinatorLayout, child, dy, min, max); } } @Override public void onNestedScroll(CoordinatorLayout coordinatorLayout, AppBarLayout child, View target, int dxConsumed, int dyConsumed, int dxUnconsumed, int dyUnconsumed) { if (dyUnconsumed < 0) { // If the scrolling view is scrolling down but not consuming, it's probably be at // the top of it's content scroll(coordinatorLayout, child, dyUnconsumed, -child.getDownNestedScrollRange(), 0); // Set the expanding flag so that onNestedPreScroll doesn't handle any events mSkipNestedPreScroll = true; } else { // As we're no longer handling nested scrolls, reset the skip flag mSkipNestedPreScroll = false; } } @Override public void onStopNestedScroll(CoordinatorLayout coordinatorLayout, AppBarLayout abl, View target) { if (!mWasFlung) { // If we haven't been flung then let's see if the current view has been set to snap snapToChildIfNeeded(coordinatorLayout, abl); } // Reset the flags mSkipNestedPreScroll = false; mWasFlung = false; // Keep a reference to the previous nested scrolling child mLastNestedScrollingChildRef = new WeakReference<>(target); } @Override public boolean onInterceptTouchEvent(CoordinatorLayout parent, AppBarLayout child, MotionEvent ev) { if (mTouchSlop < 0) { mTouchSlop = ViewConfiguration.get(parent.getContext()).getScaledTouchSlop(); } final int action = ev.getAction(); // Shortcut since we're being dragged if (action == MotionEvent.ACTION_MOVE && mIsBeingDragged) { return true; } switch (MotionEventCompat.getActionMasked(ev)) { case MotionEvent.ACTION_MOVE: { final int activePointerId = mActivePointerId; if (activePointerId == INVALID_POINTER) { // If we don't have a valid id, the touch down wasn't on content. break; } final int pointerIndex = MotionEventCompat.findPointerIndex(ev, activePointerId); if (pointerIndex == -1) { break; } final int y = (int) MotionEventCompat.getY(ev, pointerIndex); final int yDiff = Math.abs(y - mLastMotionY); if (yDiff > mTouchSlop) { mIsBeingDragged = true; mLastMotionY = y; } break; } case MotionEvent.ACTION_DOWN: { mIsBeingDragged = false; final int x = (int) ev.getX(); final int y = (int) ev.getY(); if (parent.isPointInChildBounds(child, x, y) && canDragAppBarLayout()) { mLastMotionY = y; mActivePointerId = MotionEventCompat.getPointerId(ev, 0); } break; } case MotionEvent.ACTION_CANCEL: case MotionEvent.ACTION_UP: mIsBeingDragged = false; mActivePointerId = INVALID_POINTER; break; } return mIsBeingDragged; } @Override public boolean onTouchEvent(CoordinatorLayout parent, AppBarLayout child, MotionEvent ev) { if (mTouchSlop < 0) { mTouchSlop = ViewConfiguration.get(parent.getContext()).getScaledTouchSlop(); } int x = (int) ev.getX(); int y = (int) ev.getY(); switch (MotionEventCompat.getActionMasked(ev)) { case MotionEvent.ACTION_DOWN: if (parent.isPointInChildBounds(child, x, y) && canDragAppBarLayout()) { mLastMotionY = y; mActivePointerId = MotionEventCompat.getPointerId(ev, 0); } else { return false; } break; case MotionEvent.ACTION_MOVE: final int activePointerIndex = MotionEventCompat.findPointerIndex(ev, mActivePointerId); if (activePointerIndex == -1) { return false; } y = (int) MotionEventCompat.getY(ev, activePointerIndex); int dy = mLastMotionY - y; if (!mIsBeingDragged && Math.abs(dy) > mTouchSlop) { mIsBeingDragged = true; if (dy > 0) { dy -= mTouchSlop; } else { dy += mTouchSlop; } } if (mIsBeingDragged) { mLastMotionY = y; // We're being dragged so scroll the ABL scroll(parent, child, dy, -child.getDownNestedScrollRange(), 0); } break; case MotionEvent.ACTION_UP: case MotionEvent.ACTION_CANCEL: mIsBeingDragged = false; mActivePointerId = INVALID_POINTER; break; } return true; } @Override public boolean onNestedFling(final CoordinatorLayout coordinatorLayout, final AppBarLayout child, View target, float velocityX, float velocityY, boolean consumed) { boolean flung = false; if (!consumed) { // It has been consumed so let's fling ourselves flung = fling(coordinatorLayout, child, -child.getTotalScrollRange(), 0, -velocityY); } else { // If we're scrolling up and the child also consumed the fling. We'll fake scroll // upto our 'collapsed' offset if (velocityY < 0) { // We're scrolling down final int targetScroll = -child.getTotalScrollRange() + child.getDownNestedPreScrollRange(); if (getTopBottomOffsetForScrollingSibling() < targetScroll) { // If we're currently not expanded more than the target scroll, we'll // animate a fling animateOffsetTo(coordinatorLayout, child, targetScroll); flung = true; } } else { // We're scrolling up final int targetScroll = -child.getUpNestedPreScrollRange(); if (getTopBottomOffsetForScrollingSibling() > targetScroll) { // If we're currently not expanded less than the target scroll, we'll // animate a fling animateOffsetTo(coordinatorLayout, child, targetScroll); flung = true; } } } mWasFlung = flung; return flung; } private void animateOffsetTo(final CoordinatorLayout coordinatorLayout, final AppBarLayout child, int offset) { if (mAnimator == null) { mAnimator = ViewUtils.createAnimator(); mAnimator.setInterpolator(AnimationUtils.DECELERATE_INTERPOLATOR); mAnimator.setUpdateListener(new ValueAnimatorCompat.AnimatorUpdateListener() { @Override public void onAnimationUpdate(ValueAnimatorCompat animator) { setHeaderTopBottomOffset(coordinatorLayout, child, animator.getAnimatedIntValue()); } }); } else { mAnimator.cancel(); } mAnimator.setIntValues(getTopBottomOffsetForScrollingSibling(), offset); mAnimator.start(); } private View getChildOnOffset(AppBarLayout abl, final int offset) { for (int i = 0, count = abl.getChildCount(); i < count; i++) { View child = abl.getChildAt(i); if (child.getTop() <= -offset && child.getBottom() >= -offset) { return child; } } return null; } private void snapToChildIfNeeded(CoordinatorLayout coordinatorLayout, AppBarLayout abl) { final int offset = getTopBottomOffsetForScrollingSibling(); final View offsetChild = getChildOnOffset(abl, offset); if (offsetChild != null) { final LayoutParams lp = (LayoutParams) offsetChild.getLayoutParams(); if ((lp.getScrollFlags() & LayoutParams.FLAG_SNAP) == LayoutParams.FLAG_SNAP) { // We're set the snap, so animate the offset to the nearest edge final int childTop = -offsetChild.getTop(); final int childBottom = -offsetChild.getBottom(); animateOffsetTo(coordinatorLayout, abl, offset < (childBottom + childTop) / 2 ? childBottom : childTop); } } } @Override public boolean onLayoutChild(CoordinatorLayout parent, AppBarLayout abl, int layoutDirection) { boolean handled = super.onLayoutChild(parent, abl, layoutDirection); final int pendingAction = abl.getPendingAction(); if (pendingAction != PENDING_ACTION_NONE) { final boolean animate = (pendingAction & PENDING_ACTION_ANIMATE_ENABLED) != 0; if ((pendingAction & PENDING_ACTION_COLLAPSED) != 0) { final int offset = -abl.getUpNestedPreScrollRange(); if (animate) { animateOffsetTo(parent, abl, offset); } else { setHeaderTopBottomOffset(parent, abl, offset); } } else if ((pendingAction & PENDING_ACTION_EXPANDED) != 0) { if (animate) { animateOffsetTo(parent, abl, 0); } else { setHeaderTopBottomOffset(parent, abl, 0); } } } else if (mOffsetToChildIndexOnLayout >= 0) { View child = abl.getChildAt(mOffsetToChildIndexOnLayout); int offset = -child.getBottom(); if (mOffsetToChildIndexOnLayoutIsMinHeight) { offset += ViewCompat.getMinimumHeight(child); } else { offset += Math.round(child.getHeight() * mOffsetToChildIndexOnLayoutPerc); } setTopAndBottomOffset(offset); } // Finally reset any pending states abl.resetPendingAction(); mOffsetToChildIndexOnLayout = INVALID_POSITION; // Make sure we update the elevation dispatchOffsetUpdates(abl); return handled; } private boolean canDragAppBarLayout() { if (mLastNestedScrollingChildRef != null) { final View view = mLastNestedScrollingChildRef.get(); return view != null && view.isShown() && !ViewCompat.canScrollVertically(view, -1); } return false; } @Override protected int setHeaderTopBottomOffset(CoordinatorLayout coordinatorLayout, View header, int newOffset, int minOffset, int maxOffset) { final int curOffset = getTopBottomOffsetForScrollingSibling(); int consumed = 0; if ((header instanceof AppBarLayout) && minOffset != 0 && curOffset >= minOffset && curOffset <= maxOffset) { // If we have some scrolling range, and we're currently within the min and max // offsets, calculate a new offset newOffset = MathUtils.constrain(newOffset, minOffset, maxOffset); AppBarLayout appBarLayout = (AppBarLayout) header; if (curOffset != newOffset) { final int interpolatedOffset = appBarLayout.hasChildWithInterpolator() ? interpolateOffset(appBarLayout, newOffset) : newOffset; boolean offsetChanged = setTopAndBottomOffset(interpolatedOffset); // Update how much dy we have consumed consumed = curOffset - newOffset; // Update the stored sibling offset mOffsetDelta = newOffset - interpolatedOffset; if (!offsetChanged && appBarLayout.hasChildWithInterpolator()) { // If the offset hasn't changed and we're using an interpolated scroll // then we need to keep any dependent views updated. CoL will do this for // us when we move, but we need to do it manually when we don't (as an // interpolated scroll may finish early). coordinatorLayout.dispatchDependentViewsChanged(appBarLayout); } // Dispatch the updates to any listeners dispatchOffsetUpdates(appBarLayout); } } return consumed; } private void dispatchOffsetUpdates(AppBarLayout layout) { final List listeners = layout.mListeners; // Iterate backwards through the list so that most recently added listeners // get the first chance to decide for (int i = 0, z = listeners.size(); i < z; i++) { final OnOffsetChangedListener listener = listeners.get(i); if (listener != null) { listener.onOffsetChanged(layout, getTopAndBottomOffset()); } } } private int interpolateOffset(AppBarLayout layout, final int offset) { final int absOffset = Math.abs(offset); for (int i = 0, z = layout.getChildCount(); i < z; i++) { final View child = layout.getChildAt(i); final AppBarLayout.LayoutParams childLp = (LayoutParams) child.getLayoutParams(); final Interpolator interpolator = childLp.getScrollInterpolator(); if (absOffset >= child.getTop() && absOffset <= child.getBottom()) { if (interpolator != null) { int childScrollableHeight = 0; final int flags = childLp.getScrollFlags(); if ((flags & LayoutParams.SCROLL_FLAG_SCROLL) != 0) { // We're set to scroll so add the child's height plus margin childScrollableHeight += child.getHeight() + childLp.topMargin + childLp.bottomMargin; if ((flags & LayoutParams.SCROLL_FLAG_EXIT_UNTIL_COLLAPSED) != 0) { // For a collapsing scroll, we to take the collapsed height // into account. childScrollableHeight -= ViewCompat.getMinimumHeight(child); } } if (ViewCompat.getFitsSystemWindows(child)) { childScrollableHeight -= layout.getTopInset(); } if (childScrollableHeight > 0) { final int offsetForView = absOffset - child.getTop(); final int interpolatedDiff = Math.round(childScrollableHeight * interpolator.getInterpolation( offsetForView / (float) childScrollableHeight)); return Integer.signum(offset) * (child.getTop() + interpolatedDiff); } } // If we get to here then the view on the offset isn't suitable for interpolated // scrolling. So break out of the loop break; } } return offset; } @Override protected int getTopBottomOffsetForScrollingSibling() { return getTopAndBottomOffset() + mOffsetDelta; } @Override public Parcelable onSaveInstanceState(CoordinatorLayout parent, AppBarLayout appBarLayout) { final Parcelable superState = super.onSaveInstanceState(parent, appBarLayout); final int offset = getTopAndBottomOffset(); // Try and find the first visible child... for (int i = 0, count = appBarLayout.getChildCount(); i < count; i++) { View child = appBarLayout.getChildAt(i); final int visBottom = child.getBottom() + offset; if (child.getTop() + offset <= 0 && visBottom >= 0) { final SavedState ss = new SavedState(superState); ss.firstVisibleChildIndex = i; ss.firstVisibileChildAtMinimumHeight = visBottom == ViewCompat.getMinimumHeight(child); ss.firstVisibileChildPercentageShown = visBottom / (float) child.getHeight(); return ss; } } // Else we'll just return the super state return superState; } @Override public void onRestoreInstanceState(CoordinatorLayout parent, AppBarLayout appBarLayout, Parcelable state) { if (state instanceof SavedState) { final SavedState ss = (SavedState) state; super.onRestoreInstanceState(parent, appBarLayout, ss.getSuperState()); mOffsetToChildIndexOnLayout = ss.firstVisibleChildIndex; mOffsetToChildIndexOnLayoutPerc = ss.firstVisibileChildPercentageShown; mOffsetToChildIndexOnLayoutIsMinHeight = ss.firstVisibileChildAtMinimumHeight; } else { super.onRestoreInstanceState(parent, appBarLayout, state); mOffsetToChildIndexOnLayout = INVALID_POSITION; } } protected static class SavedState extends View.BaseSavedState { int firstVisibleChildIndex; float firstVisibileChildPercentageShown; boolean firstVisibileChildAtMinimumHeight; public SavedState(Parcel source) { super(source); firstVisibleChildIndex = source.readInt(); firstVisibileChildPercentageShown = source.readFloat(); firstVisibileChildAtMinimumHeight = source.readByte() != 0; } public SavedState(Parcelable superState) { super(superState); } @Override public void writeToParcel(Parcel dest, int flags) { super.writeToParcel(dest, flags); dest.writeInt(firstVisibleChildIndex); dest.writeFloat(firstVisibileChildPercentageShown); dest.writeByte((byte) (firstVisibileChildAtMinimumHeight ? 1 : 0)); } public static final Parcelable.Creator CREATOR = new Parcelable.Creator() { @Override public SavedState createFromParcel(Parcel source) { return new SavedState(source); } @Override public SavedState[] newArray(int size) { return new SavedState[size]; } }; } } /** * Behavior which should be used by {@link View}s which can scroll vertically and support * nested scrolling to automatically scroll any {@link AppBarLayout} siblings. */ public static class ScrollingViewBehavior extends HeaderScrollingViewBehavior { private int mOverlayTop; public ScrollingViewBehavior() {} public ScrollingViewBehavior(Context context, AttributeSet attrs) { super(context, attrs); TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.ScrollingViewBehavior_Params); mOverlayTop = a.getDimensionPixelSize( R.styleable.ScrollingViewBehavior_Params_behavior_overlapTop, 0); a.recycle(); } @Override public boolean layoutDependsOn(CoordinatorLayout parent, View child, View dependency) { // We depend on any AppBarLayouts return dependency instanceof AppBarLayout; } @Override public boolean onLayoutChild(CoordinatorLayout parent, View child, int layoutDirection) { // First lay out the child as normal super.onLayoutChild(parent, child, layoutDirection); // Now offset us correctly to be in the correct position. This is important for things // like activity transitions which rely on accurate positioning after the first layout. final List dependencies = parent.getDependencies(child); for (int i = 0, z = dependencies.size(); i < z; i++) { if (updateOffset(parent, child, dependencies.get(i))) { // If we updated the offset, break out of the loop now break; } } return true; } @Override public boolean onDependentViewChanged(CoordinatorLayout parent, View child, View dependency) { updateOffset(parent, child, dependency); return false; } private boolean updateOffset(CoordinatorLayout parent, View child, View dependency) { final CoordinatorLayout.Behavior behavior = ((CoordinatorLayout.LayoutParams) dependency.getLayoutParams()).getBehavior(); if (behavior instanceof Behavior) { // Offset the child so that it is below the app-bar (with any overlap) final int offset = ((Behavior) behavior).getTopBottomOffsetForScrollingSibling(); setTopAndBottomOffset(dependency.getHeight() + offset - getOverlapForOffset(dependency, offset)); return true; } return false; } private int getOverlapForOffset(final View dependency, final int offset) { if (mOverlayTop != 0 && dependency instanceof AppBarLayout) { final AppBarLayout abl = (AppBarLayout) dependency; final int totalScrollRange = abl.getTotalScrollRange(); final int preScrollDown = abl.getDownNestedPreScrollRange(); if (preScrollDown != 0 && (totalScrollRange + offset) <= preScrollDown) { // If we're in a pre-scroll down. Don't use the offset at all. return 0; } else { final int availScrollRange = totalScrollRange - preScrollDown; if (availScrollRange == 0) { // Else we'll use a interpolated ratio of the overlap, depending on offset final float percScrolled = offset / (float) availScrollRange; return MathUtils.constrain( Math.round((1f + percScrolled) * mOverlayTop), 0, mOverlayTop); } } } return mOverlayTop; } /** * Set the distance that this view should overlap any {@link AppBarLayout}. * * @param overlayTop the distance in px */ public void setOverlayTop(int overlayTop) { mOverlayTop = overlayTop; } /** * Returns the distance that this view should overlap any {@link AppBarLayout}. */ public int getOverlayTop() { return mOverlayTop; } @Override protected View findFirstDependency(List views) { for (int i = 0, z = views.size(); i < z; i++) { View view = views.get(i); if (view instanceof AppBarLayout) { return (AppBarLayout) view; } } return null; } @Override protected int getScrollRange(View v) { if (v instanceof AppBarLayout) { return ((AppBarLayout) v).getTotalScrollRange(); } else { return super.getScrollRange(v); } } } }