-
Notifications
You must be signed in to change notification settings - Fork 425
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
Fix Android edge to edge Media Element Bug #2587
base: main
Are you sure you want to change the base?
Fix Android edge to edge Media Element Bug #2587
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.
Pull Request Overview
This PR addresses a bug in the Android Media Element where a white bar appears between the navigation and status bars when restoring from fullscreen mode on Android API levels below 35. The key changes include removing unused state variables, renaming and refactoring the method that manages system bar visibility, and updating the window flags handling for Android versions 33 and 34.
Comments suppressed due to low confidence (1)
src/CommunityToolkit.Maui.MediaElement/Views/MauiMediaElement.android.cs:136
- [nitpick] The method name 'SetStatusBarsHidden' may be misleading since it both hides and shows system bars based on fullscreen status. Consider renaming it to 'UpdateSystemBarsVisibility' to more accurately reflect its behavior.
public void SetStatusBarsHidden()
src/CommunityToolkit.Maui.MediaElement/Views/MauiMediaElement.android.cs
Show resolved
Hide resolved
Removed unnecessary window flag settings to simplify full-screen handling of system bar visibility.
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.
Pull Request Overview
This pull request addresses the issue where a white bar appears between the navigation and status bars in Android when restoring from full screen.
- Replaces SetSystemBarsVisibility with a new method SetStatusBarsHidden to handle full screen mode.
- Removes obsolete fields used for tracking system bar state.
Comments suppressed due to low confidence (1)
src/CommunityToolkit.Maui.MediaElement/Views/MauiMediaElement.android.cs:136
- [nitpick] The method name 'SetStatusBarsHidden' might be misleading since it not only affects the status bars on lower API levels but also manipulates system bars on API 34 and above; consider renaming it to better reflect its full screen system bar management behavior.
public void SetStatusBarsHidden()
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.
It looks good to me, can you double check if this will work if the media element is inside a modalPage?
I just created a project and tested using a navigation page like this:
If by chance a navigation page is a modal page then yes it does work. |
Not sure if I got your answer, but the way you create the Window and MainPage will not matter here. I'm asking due to the issue caused by modal navigations on android, that they don't re-apply the configurations that you do with the |
Description of Change
Fix edge to edge issue in Android 33 and 34 with bug introduced in current Maui version 9.0.50.
Linked Issues
PR Checklist
approved
(bug) orChampioned
(feature/proposal)main
at time of PRAdditional information
This fixes an issue that affect android media element where a white bar appear between navigation bar and status bar after restoring from full screen. This appears to affect API levels below 35 only.
Before
2025-03-17.13-33-43.mp4
After
2025-03-17.13-36-22.mp4