Re: [android-developers] play remote audio file in android audio player

2010-11-15 Thread Kumar Bibek
I don't think you can do this. Most of the devices come with their own Media player implementations. So, unless, those players expose an Intent to do so, you cannot use the default media player to stream mp3s. However you can create your own media player activity and stream your files. On Fri, Nov

[android-developers] play remote audio file in android audio player

2010-11-15 Thread resursecrestine
Hello, I am working on a application that would allow users to play remote files. My question is how do I open those remote files to be played in the default android player? I have tried something like Integer i = v.getId(); String link = "http://www.site.com/file.mp3";; Uri uri = Uri.parse(link