I was back to the Android lang with the free Nexus One from Google, and had a project in mind that involves MediaPlayer and for which here is how i did it.
Java | copy code |? 01private void playAudio(String mediaUrl) {02 try {03 URLConnection cn = new URL(mediaUrl).openConnection();04 [...]
