In onTouchEvent, ACTION_UP doesn't work

你离开我真会死。 提交于 2019-11-29 06:00:56

My guess is that super.onTouchEvent is returning false, as whatever superclass you're calling doesn't care about the touch event.

If you return false to onTouchEvent, then the Android OS will no longer notify you of any further events in that gesture. If you want to continue receiving touch event information (ACTION_UP for example), then you must return true to the first ACTION_DOWN event.

"petey"'s solution worked for me ! Except some syntax errors, corrected here :

int code = event.getAction() & MotionEvent.ACTION_MASK;
if ((code == MotionEvent.ACTION_POINTER_UP) || (code == MotionEvent.ACTION_UP) || (code == MotionEvent.ACTION_CANCEL)) {

Thanks a lot.

try :

int action = event.getAction();
int code = action & MotionEvent.ACTION_MASK;
if (code == MotionEvent.ACTION_POINTER_UP || code == MotionEvent.ACTION_UP || MotionEvent.ACTION_CANCEL) {
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!