当前位置: 代码迷 >> Android >> Android SoundPool sample 1 not ready异常解决办法
  详细解决方案

Android SoundPool sample 1 not ready异常解决办法

热度:247   发布时间:2016-04-28 05:02:49.0
Android SoundPool sample 1 not ready错误解决方法
Android SoundPool sample 1 not ready错误解决方法
DDMS报的错是sample not ready的问题,也就是说是在load加载音乐文件出错,导致在play播放音乐时显示not ready; 在SoundPool中有setOnLoadCompleteListener方法用来判断音乐加载是否完成,因此解决方法如下:
一、调用setOnLoadCompleteListener方法来确保音乐加载完成,注意需要SoundPool.OnLoadCompleteListener listener

需要实现SoundPool.OnLoadCompleteListener接口。
soundPool.setOnLoadCompleteListener(new OnLoadCompleteListener(){@Overridepublic void onLoadComplete(SoundPool arg0, int arg1, int arg2) {soundPool.play(soundPoolMap.get(soundId), // 声音资源idvolume, // 左声道音量volume, // 右声道音量1, // 优先级loop, // 循环次数 -1带表永远循环0.5f // 回放速度0.5f~2.0f之间);}});

二、可直接在load后面加sleep(1000),具体时间根据加载的文件的多少大小而定,给程序足够的时间去加载初始化音频文件。

// 将加载的声音资源id放进此Map
soundPoolMap.put(1, soundPool.load(this, R.raw.gamestart, 1));try {Thread.sleep(1000);// 给予初始化音乐文件足够时间} catch (InterruptedException e) {e.printStackTrace();}
  相关解决方案