Redundant delay before showing UI
Steps to reproduce:
- Disable "double tap to seek" and "double tap to play/pause".
- Open video.
- Tap on screen.
There is delay (ViewConfiguration.getDoubleTapTimeout()
, 300 ms) in the app before showing UI. This delay related to the double taps functionality (play/pause and seek). Delay is needed to ensure that first tap is not a part of double tap. But when "double tap to seek" and "double tap to play/pause" are disabled this delay still exist. We need rid off this delay when double taps functions are disabled.
I'll prepare pull-request to fix this.