Android ScrollView,检查当前是否滚动

时间:2015-02-20 10:17:57

标签: java android android-listview android-view android-scrollview

有没有办法检查当前是否正在滚动标准ScrollView?

无论方向是向上还是向下都不重要,我只需要检查它当前是否正在滚动。

1 个答案:

答案 0 :(得分:2)

当前形式的

ScrollView不提供检测滚动事件的回调。有两种解决方法可供选择:

1。使用ListView并实施OnScrollListener

2。从现有的ScrollView实施和extend it to provide callbacks for scroll events中获取自定义类。