Janusz Chorko
04/11/2024, 4:16 PMdispatchTouchEvent
method and the coordinates are correct and correspond to me touching the screen in those places at that time.
Also non-compose applications also run fine.
How can I further debug what is messing with compose or providing wrong input? How does it even acquire touch events from the system?Janusz Chorko
04/12/2024, 12:49 PMJanusz Chorko
04/12/2024, 2:26 PMdispatchTouchEvent
and dispatchGenericMotionEvent
in AndroidComposeView
When I pressed home, the device was generating a sequence of:
MotionEvent { action=ACTION_HOVER_ENTER, ... }
MotionEvent { action=ACTION_HOVER_ENTER, ... }
MotionEvent { action=ACTION_HOVER_MOVE, ... }
MotionEvent { action=ACTION_HOVER_EXIT, ... }
which I guess was baffling compose.Zach Klippenstein (he/him) [MOD]
04/12/2024, 5:58 PMMarc Ouellet
04/25/2024, 5:00 PM