不是在谈论MediaPlayer,而是关于与Advent Vega平板电脑(2.2)捆绑在一起的应用程序。
如何从我自己的代码中将URI / URL传递给媒体播放器应用程序?
答案 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();
}