Answers:
ScrollView中有一个方法...
protected void onScrollChanged(int x, int y, int oldx, int oldy)
不幸的是Google从来没有想过我们需要访问它,这就是为什么他们使它受到保护并且没有添加“ setOnScrollChangedListener”钩子的原因。因此,我们将不得不为自己做。
首先,我们需要一个接口。
package com.test;
public interface ScrollViewListener {
void onScrollChanged(ObservableScrollView scrollView, int x, int y, int oldx, int oldy);
}
然后,我们需要重写ScrollView类,以提供ScrollViewListener挂钩。
package com.test;
import android.content.Context;
import android.util.AttributeSet;
import android.widget.ScrollView;
public class ObservableScrollView extends ScrollView {
private ScrollViewListener scrollViewListener = null;
public ObservableScrollView(Context context) {
super(context);
}
public ObservableScrollView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
}
public ObservableScrollView(Context context, AttributeSet attrs) {
super(context, attrs);
}
public void setScrollViewListener(ScrollViewListener scrollViewListener) {
this.scrollViewListener = scrollViewListener;
}
@Override
protected void onScrollChanged(int x, int y, int oldx, int oldy) {
super.onScrollChanged(x, y, oldx, oldy);
if(scrollViewListener != null) {
scrollViewListener.onScrollChanged(this, x, y, oldx, oldy);
}
}
}
我们应该在布局中指定此新的ObservableScrollView类,而不是现有的ScrollView标签。
<com.test.ObservableScrollView
android:id="@+id/scrollview1"
... >
...
</com.test.ObservableScrollView>
最后,我们将所有内容放到Layout类中。
package com.test;
import android.app.Activity;
import android.os.Bundle;
public class Q3948934 extends Activity implements ScrollViewListener {
private ObservableScrollView scrollView1 = null;
private ObservableScrollView scrollView2 = null;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.q3948934);
scrollView1 = (ObservableScrollView) findViewById(R.id.scrollview1);
scrollView1.setScrollViewListener(this);
scrollView2 = (ObservableScrollView) findViewById(R.id.scrollview2);
scrollView2.setScrollViewListener(this);
}
public void onScrollChanged(ObservableScrollView scrollView, int x, int y, int oldx, int oldy) {
if(scrollView == scrollView1) {
scrollView2.scrollTo(x, y);
} else if(scrollView == scrollView2) {
scrollView1.scrollTo(x, y);
}
}
}
scrollTo()代码为我们处理了所有循环条件,因此我们不必为此担心。唯一的警告是,由于我们将覆盖受保护的方法,因此不能保证此解决方案可以在将来的Android版本中使用。
安迪解决方案的一个改进:在他的代码中,他使用了scrollTo,问题是,如果您向一个方向抛开一个滚动视图,然后向另一个方向抛开另一个滚动视图,您会注意到第一个不会停止他先前的猛扑运动。
这是由于scrollView使用computeScroll()来执行挥舞手势,并且它与scrollTo冲突。
为了防止这种情况,只需以这种方式编写onScrollChanged:
public void onScrollChanged(ObservableScrollView scrollView, int x, int y, int oldx, int oldy) {
if(interceptScroll){
interceptScroll=false;
if(scrollView == scrollView1) {
scrollView2.onOverScrolled(x,y,true,true);
} else if(scrollView == scrollView2) {
scrollView1.onOverScrolled(x,y,true,true);
}
interceptScroll=true;
}
}
使用interceptScroll初始化为true的静态布尔值。(这有助于避免ScrollChanged上的无限循环)
我发现onOverScrolled是可以用来阻止scrollView停止运行的唯一函数(但是可能还有其他我错过的功能!)
为了访问此功能(受保护的),您必须将其添加到ObservableScrollViewer
public void onOverScrolled(int scrollX, int scrollY, boolean clampedX, boolean clampedY) {
super.onOverScrolled(scrollX, scrollY, clampedX, clampedY);
}
为什么不只是OnTouchListener
在您的活动中实施。然后覆盖onTouch方法,然后获取第一个的滚动位置 ScrollViewOne.getScrollY()
并更新ScrollViewTwo.scrollTo(0, ScrollViewOne.getScrollY());
只是另一个想法... :)