With a new one youtube apifor android, when you try to start working with YouTubeStandalonePlayer , a video will be displayed in landscape mode.
Intent youtubeIntent = YouTubeStandalonePlayer.createVideoIntent(context, Configuration.DEVELOPER_KEY, item.getVideo().getId(), 0, true,false);
context.startActivity(youtubeIntent);
I want the video to still display in full screen mode, but with portrait mode.
source
share