Podcasts
Podcasts copied to clipboard
Full screen mode playback controls
Can you add playback controls in full screen mode?
Like Car Mode just in full screen? What Controls would you want?
I apologize, more details were needed. When I am watching a video in full screen mode and touch the screen to pause or rewind, etc. It jumps back to portrait mode then i have to switch back when i am done.
How about binding the AreTransportControlsEnabled state to the full screen state? If in full screen is true then AreTransportControlsEnabled as well.
void ShowFullscreenVideo(bool state) { mediaPlayerElement.IsFullWindow = state; mediaPlayerElement.AreTransportControlsEnabled = state;
Makes sense to me