0

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

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

4

1 回答 1

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(); 
} 
于 2011-05-11T19:27:15.747 回答