不是在谈论 MediaPlayer,而是在谈论与 Advent Vega 平板电脑 (2.2) 捆绑在一起的应用程序。
如何从我自己的代码将 URI/URL 传递给媒体播放器应用程序?
不是在谈论 MediaPlayer,而是在谈论与 Advent Vega 平板电脑 (2.2) 捆绑在一起的应用程序。
如何从我自己的代码将 URI/URL 传递给媒体播放器应用程序?
我不能保证它会起作用,但你可以尝试这样的事情......
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();
}