在我的应用程序中,我在单击按钮时添加了声音
这是管理声音的类
public class GestoreSuoni{
MediaPlayer mp;
public void playSound(Context context,int sound){
mp = MediaPlayer.create(context, sound);
mp.start();
}
}
在我的主要活动中,我为所有按钮调用了 playSound 方法
button_name.setOnClickListener(new OnClickListener(){
public void onClick(View arg0) {
gestoreSuoni.eseguiSuono(getApplicationContext(),R.raw.tieni_suono);
}
});
起初它可以工作,但在我的按钮上点击 20-30 次后,我再也听不到声音了,我从 LogCat 收到这条消息:Mediaplayer 错误(- 19,0)。
是什么意思?
谢谢