Is it possible to instruct the VideoView to go fullscreen programmatically? I found a snipped of ObjC that loads a URL and sets fullscreen, but could it be made a function to call via NativeMethod with the param of the VideoView that we want to go fullscreen? This is only to save the user from needing to click the fullscreen button. It's not critical, but would be nice to figure out.
B4X:
{
player = [[MPMoviePlayerViewController alloc]initWithContentURL:url];
player.moviePlayer.fullscreen = YES;
player.moviePlayer.scalingMode = MPMovieScalingModeAspectFill;
}