3

I'm looking is it possible to capture MotionEven data (pressure) on keyboard (in my app)? Or is there way to intercept all touches on screen in my app (something like full screen mode).

Michał Tajchert
  • 10,333
  • 4
  • 30
  • 47

1 Answers1

-1

Try it:

         @Override
         public boolean onTouchEvent(MotionEvent me) {
         //for example
         if (me.getAction() == MotionEvent.ACTION_UP) {
         }

}
user1755546
  • 1,049
  • 2
  • 13
  • 27