AndroId MediaPlayer prepareAsync method
I have a strange problem. I use the prepareAsync method with the MediaPlayer , but the listener that I declared just never gets fired. I try to stream a live .mp3 feed from the Internet (radio station). I use an inline method for the listener, but I also tried implementing the interface without any success. Here's a portion of my code : In the member section : String url = "http://<my_url>.mp3"; MediaPlayer mediaPlayer = new MediaPlayer(); In Activity onCreate() : ToggleButton playButton = (ToggleButton) findViewById(R.id.playToggleButton); playButton.setOnClickListener(this); playButton