有没有办法在纵向和全屏模式下打开Youtube应用程序?
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("vnd.youtube:"+videoId));
intent.putExtra("VIDEO_ID", videoId);
intent.putExtra("force_fullscreen",true);
startActivity(intent);