Currently developing a IME (InputMethodEditor) app, so there is the subclassed InputMethodService and that inflates a keyboardView. In this case it's just inflating a view, its size is similar to any other keyboard app. The View logs the touch event position of down, move, and up actions. I have minimised it to this, because I am testing the touch position given on move events. All positions are logged relative to the IME window, but when a move gesture goes beyond the view (above it) the y coordinates do not continue and remain at zero.
Is there a way to continue to receive the actual coordinates of the pointer even though the action move is outside of the IME window.
EDIT: The aim was to test if an action move event from a view in IME window can be passed to a view in another window, (i.e. to seamlessly continue with the action move from the IME Window to another) and also to move back to the IME window. But because the move coordinates seem to be bound to the IME window this doesn't work when the touch event goes beyond the IME window.