AppBarLayout ScrollFlags介绍

2019-12-03  本文已影响0人  hydCoder

scroll

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.

需要响应滚动必须设置的标示!Child View 随着滚动事件滚出或滚进屏幕。

  1. 想要响应其他的标示,必须有这个标示存在才行
  2. 当前Child View前面的任何其他Child View没有设置这个值,那么这个Child View的设置将失去作用;因为滚动会被挡住。

enterAlways

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.

优先响应滚动模式。其实是向下滚动时Scrolling View(RecyclerView)和Child View(Appbar的子View)之间的滚动优先级问题。

enterAlwaysCollapsed

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.

enterAlways的附加值。滚动时优先响应Child View的滚动,但是仅仅只滚动最小高度;随后响应Scrolling View(RecyclerView)的滚动,当RecyclerView到达边界时,Child View再向下滚动,直至显示完全。

exitUntilCollapsed

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.

exit是退出,与enter相反;向上滚动时为退出,向下就是进入。目标是Appbar控件。

snap

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.

“咬住”!!!简单说就是Child View滚动比例的一个吸附效果。

上一篇下一篇

猜你喜欢

热点阅读