android youtube应用程序中的全屏模式

时间:2012-04-25 06:08:20

标签: android android-intent youtube youtube-api youtube-javascript-api

我有lauch一个android youtube应用程序的代码

private String video_id[] = { "gZiKrWSzNBo", "mzpJq23cuKc" };
private final static String YOUTUBE_URL = "http://www.youtube.com/watch?v=";
private final static String YOUTUBE_APP = "com.google.android.youtube";

Intent youtube_intent = new Intent();
youtube_intent.setPackage(YOUTUBE_APP);
youtube_intent.setAction(Intent.ACTION_VIEW);
youtube_intent.setData(Uri.parse(YOUTUBE_URL + video_id[position]
                + PLAYER_PARAMETERS));
        startActivity(youtube_intent);

如何强制此应用程序在android 3.2中以全屏模式显示视频? 并且不建议使用videoview和嵌入播放器 - 这种方法对我不起作用

1 个答案:

答案 0 :(得分:2)

对于YouTube v4.1.47,您可以执行以下操作:

Intent playIntent = new Intent(Intent.ACTION_VIEW);
playIntent.setData(Uri.parse(<yout_YouTube_url>));
playIntent.putExtra("force_fullscreen", true);

它可能适用于旧版本,但我还没有测试过它。