open youtube in landscape mode on button click in android progmatically
Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
browserIntent.putExtra("force_fullscreen",true);// main logic is in this line
startActivity(browserIntent);