SoundPool 不播放声音
Posted
技术标签:
【中文标题】SoundPool 不播放声音【英文标题】:SoundPool not playing sounds 【发布时间】:2010-07-23 21:33:33 【问题描述】:我创建了一个使用 SoundPool 函数来循环播放特定声音的 SoundManager 类,但是我不知道为什么它没有播放声音。
public class SoundManager
private SoundPool mSoundPool;
private HashMap<Integer, Integer> mSoundPoolMap;
private AudioManager mAudioManager;
private Context mContext;
public SoundManager()
public void initSounds(Context theContext)
mContext = theContext;
mSoundPool = new SoundPool(4, AudioManager.STREAM_MUSIC, 0);
mSoundPoolMap = new HashMap<Integer, Integer>();
mAudioManager = (AudioManager)mContext.getSystemService(Context.AUDIO_SERVICE);
public void addSound(int Index, int SoundID)
mSoundPoolMap.put(Index, mSoundPool.load(mContext, SoundID, 1));
public void playSound(int index)
int streamVolume = mAudioManager.getStreamVolume(AudioManager.STREAM_MUSIC);
mSoundPool.play(mSoundPoolMap.get(index), streamVolume, streamVolume, 1, 0, 1f);
public void playLoopedSound(int index)
int streamVolume = mAudioManager.getStreamVolume(AudioManager.STREAM_MUSIC);
mSoundPool.play(mSoundPoolMap.get(index), streamVolume, streamVolume, 1, -1, 1f);
这个类是通过我的 Activity 调用的:
private SoundManager mSoundManager;
mSoundManager = new SoundManager();
mSoundManager.initSounds(getBaseContext());
mSoundManager.addSound(1, R.raw.sound);
mSoundManager.playSound(1);
【问题讨论】:
【参考方案1】:显然它不适用于我的活动 onCreate 但在事件发生时调用它(意图/按键)它似乎工作
【讨论】:
它确实适用于 onCreate。我测试了它,我想你可能必须等到声音加载。那是根据***.com/questions/55200787/… 试试这个,看看它是否有效。【参考方案2】:我遇到了这个问题,最后通过在支持音频的模拟器上运行解决了!!
不敢相信这么简单!
窗口 > AVD 管理器 > 编辑您的 AVD(为了安全起见,我创建了一个新的,因为我是从快照运行的)> 硬件 > 新建 > 音频播放支持
【讨论】:
以上是关于SoundPool 不播放声音的主要内容,如果未能解决你的问题,请参考以下文章
Android 编程 - 如何从广播接收器播放 SoundPool 声音?