gpt4 book ai didi

android - 使用 eclipse 将 youtube 视频嵌入到 android 应用程序中?

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:07:08 26 4
gpt4 key购买 nike

我想弄清楚如何使用 eclipse 将 youtube 视频嵌入到 android 中。我更愿意使用 chromeless 播放器,但在这一点上没有必要。

如能提供有关如何执行此操作的任何帮助,我们将不胜感激。

最佳答案

嵌入 Youtube 视频的最简单方法是使用 intent 来触发 Youtube 应用程序,如下所示:

String video_path = "http://www.youtube.com/watch?v=opZ69P-0Jbc";
Uri uri = Uri.parse(video_path);

// With this line the Youtube application, if installed, will launch immediately.
// Without it you will be prompted with a list of the application to choose.
uri = Uri.parse("vnd.youtube:" + uri.getQueryParameter("v"));

Intent intent = new Intent(Intent.ACTION_VIEW, uri);
startActivity(intent);

关于android - 使用 eclipse 将 youtube 视频嵌入到 android 应用程序中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5798595/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com