如何在 android 中从另一个滚动视图滚动时向下滚动滚动视图?

How to scroll down a scrollview while scrolling from another scrollview in android?

我有两个 scrollview,我想滚动任何一个 scrollview,以便另一个 scrollview 也向下滚动。 android 有可能吗?如果是那么怎么办?

ScrollView sv1 = (ScrollView)findViewById(R.id.scrollview1);
ScrollView sv2 = (ScrollView)findViewById(R.id.scrollview2);

sv1.getViewTreeObserver().addOnScrollChangedListener(new OnScrollChangedListener() {
    @Override
    public void onScrollChanged() {
        sv2.scrollTo(sv1.getScrollX(), sv1.getScrollY());
    }
});