我希望继续阅读继续触地活动。 我的意思是我想每0.01秒获得一次活动。 我已经尝试过使用GestureDetector,并且在继续播放过程中我得到了演出和长时间的事件 触摸。在漫长的事件之后,我没有得到任何事件。 请帮忙......
答案 0 :(得分:0)
您需要使用Activity
的{{3}}方法收听TouchMotion事件。
答案 1 :(得分:0)
你在哪里记录事件?只要用户触摸屏幕,就应该调用onTouch()处理程序。您可以对事件执行切换案例以确定用户正在执行的操作:
switch(event) {
case MotionEvent.ACTION_DOWN:
// When user first touches screen
break;
case MotionEvent.ACTION_MOVE:
// When user is dragging, or continuous touch
break;
case MotionEvent.ACTION_UP:
// When user stops touching
break;
}