我有一个包含一些项目的ViewGroup。一旦我向上滚动ViewGroup,我想在活动的底部显示一个布局,否则隐藏它。 问题是:如何从ViewGroup捕获向上/向下滚动事件?
干杯,
答案 0 :(得分:0)
看看managing touch events in a ViewGroup。
我相信
case MotionEvent.ACTION_MOVE: {
if (mIsScrolling) {
// We're currently scrolling, so yes, intercept the
// touch event!
return true;
}
}
是您正在寻找的。 p>
答案 1 :(得分:0)
可能这个ViewGroup在ScrollView中?您可以覆盖ScrollView的onOverScrolled。