我有一个 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?谢谢。