如何以编程方式滚动AppBarLayout?

时间:2019-07-04 07:50:26

标签: android

我有一个 AppBarLayout 。使用回调 onOffsetChanged

@Override
public void onOffsetChanged(AppBarLayout appBarLayout, int offset) {
     //offset determines the appbar is idle or scrolling
}

我可以检测 AppBar 是否在滚动。但是,当我致电

appBar.scrollTo(0, someY);

appBar.scrollBy(0, someY);

它确实向下滚动到 someY ,但我再也无法向上或向下滚动,它一直停留在 someY 。我想问一下是否可以通过程序滚动AppBar?谢谢。

0 个答案:

没有答案