Skip to content

Instantly share code, notes, and snippets.

@frontweb
Created December 16, 2011 17:43
Show Gist options
  • Save frontweb/1487080 to your computer and use it in GitHub Desktop.
Save frontweb/1487080 to your computer and use it in GitHub Desktop.
Catch any touch event in an Android app
@Override
public boolean dispatchTouchEvent(MotionEvent event){
resetSessionTimeout();
super.dispatchTouchEvent(event);
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment