android图片库开始移动或减慢并停止移动
我正在使用 android gallery 有没有任何侦听器或方法我可以知道当用户开始运动、停止运动、减慢或移动时哪个会被触发?
我看到您可以覆盖以下方法,
@Override
public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, float velocityY) {
return super.onFling(e1, e2, velocityX, velocityY);
}
但我如何知道滚动是否要停止或开始?
i am using android gallery is there any listener or way i can know which get fired when user start motion, stop motion, slowing down or moving ?
i see you can overide the following method
@Override
public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, float velocityY) {
return super.onFling(e1, e2, velocityX, velocityY);
}
but how do i know if scrolling is going to stop or started ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你的方法是正确的,现在根据你的显示宽度,你将比较原始速度和修改后的速度。
you are in the right way, now based in your display width you will compare the Original Velocity with the Modified Velocity.