我试图通过覆盖Gesture Listener的onScroll方法来实现布局的滚动
@Override
public boolean onScroll(MotionEvent e1, MotionEvent e2,
float distanceX, float distanceY) {
Log.d("Scroll"," X " + this.get +" Y " + this.getScrollY() );
// this- Relative Layout
this.scrollBy((int)distanceX,(int)distanceY);
invalidate();
return false;
}
使用上面的代码,我可以滚动布局,但我的布局背景是移出界限即屏幕?我该如何限制它? 我通过getScrolly(),getLeft()尝试了各种各样的东西但是我没有得到任何可以继续的链接?请帮帮我......