我面臨使用MediaPlayer以及原生Android音頻播放器播放音頻url的問題。 這裏是我的網址 http://live.politiafm.com:8500/politiafm.mp3在Android中實時音頻流
這裏是我的代碼 使用本機的音頻播放器 意向意圖=新意圖(android.content.Intent.ACTION_VIEW); intent.setDataAndType(Uri.parse(STREAM_URL),「audio/*」); StartActivity(intent);使用媒體播放器 MediaPlayer mp = new MediaPlayer(); mp.setAudioStreamType(AudioManager.STREAM_MUSIC); mp.create(Landing.this,Uri.parse(STREAM_URL));
mp.prepareAsync();
mp.start();
在這兩種情況下音頻都不播放。有些身體可以幫助我擺脫這種麻煩。
感謝&問候
我已經與mp.prepare嘗試() ; – 2012-07-22 15:35:42