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

时间:2011-05-11 18:59:02

标签: android url uri android-mediaplayer media

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

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

1 个答案:

答案 0 :(得分:0)

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

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(); 
}