-
-
Notifications
You must be signed in to change notification settings - Fork 2.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat!(android): exit fullscreen mode after finishing video playback #3978
feat!(android): exit fullscreen mode after finishing video playback #3978
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have few questions:
- Do we have same behaviour on iOS ?
- What is default behaviour on android ?
- This can be breaking behaviour (I guess, but not sure) so maybe we should exit when
repeat=false
@KrzysztofMoch Finally, I think it's better to not exit fullscreen mode after finishing video playback. |
Good explanation which justify the change. Agreed with @KrzysztofMoch , this behavior change is a breaking behavior it should be warned in release note ! |
I would like to change this to
WDYT ? @seyedmostafahasani |
@KrzysztofMoch I agree with you. What do you think about the point below? Imagine a user wants to see a list of movies. The user start watching the first movie in fullscreen mode. When the first video finishes, another video starts immediately, but the player exits fullscreen mode. As a result, the user has to activate fullscreen mode again. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Okay fair point
@KrzysztofMoch I think we don't need to exit full-screen mode automatically. I guess the user can exit it if they want to. |
Summary
We don't need to exit fullscreen mode after finishing video playback because the user might be using repeat mode. This way, they won't need to interact with their phone after the video finishes.
Motivation
Fix this issue 3703.
Changes
Test plan