如何将 URI/URL 传递给 Android 媒体播放器?

发布于 2024-11-06 08:45:22 字数 107 浏览 0 评论 0原文

不是在谈论 MediaPlayer,而是在谈论与 Advent Vega 平板电脑 (2.2) 捆绑在一起的应用程序。

如何从我自己的代码将 URI/URL 传递到媒体播放器应用程序?

Not talking about MediaPlayer, but about the app that comes bundled with Advent Vega tablet (2.2).

How can I pass a URI/URL to a media player app from my own code?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

长梦不多时 2024-11-13 08:45:22

我不能保证它会起作用,但你可以尝试这样的事情......

Intent intent = new Intent(android.content.Intent.ACTION_VIEW); 
Uri data = Uri.parse("http://someserver.com/thefile.mp3"); 
intent.setDataAndType(data,"audio/mp3"); 
try { 
    startActivity(intent); 
} catch (ActivityNotFoundException e) { 
    e.printStackTrace(); 
} 

I can't guarantee it will work but you could try something like this...

Intent intent = new Intent(android.content.Intent.ACTION_VIEW); 
Uri data = Uri.parse("http://someserver.com/thefile.mp3"); 
intent.setDataAndType(data,"audio/mp3"); 
try { 
    startActivity(intent); 
} catch (ActivityNotFoundException e) { 
    e.printStackTrace(); 
} 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文