gpt4 book ai didi

android - Android 中的原生视频播放器?

转载 作者:行者123 更新时间:2023-11-29 14:41:56 26 4
gpt4 key购买 nike

在 android 应用程序中,如果您需要默认打开任何链接,我们可以在 browser 中启动它,而不是在 WebView 中加载它,类似地,如果我想播放视频,我有视频 URL,如何在 android 的默认视频播放器中播放它,而不是使用 VideoView

有谁知道可以帮帮我吗?

谢谢。

最佳答案

使用它可以在不使用 VideoView 的情况下播放视频..

 Intent intent = new Intent(android.content.Intent.ACTION_VIEW);
Uri data = Uri.parse(Path to video file);
intent.setDataAndType(data, "video/mp4");
startActivity(intent);

关于android - Android 中的原生视频播放器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6465676/

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