发布网友 发布时间:2022-04-19 06:00
共1个回答
热心网友 时间:2022-04-19 07:29
在touchevent的down事件里直接截获按下操作追问能写下代码,我看下吗?追答public boolean dispatchTouchEvent(MotionEvent ev) {
int action = ev.getAction();
switch (action) {
case MotionEvent.ACTION_DOWN:
break;
case MotionEvent.ACTION_MOVE:
break;
case MotionEvent.ACTION_UP:
break;
}
return true;
}