我正在为学校创建一个采样器应用程序。我编写了代码,当我按住一个按钮时播放一个样本,当我释放它时停止。我的问题是它有太多的延迟。按下按钮后播放声音需要很长时间。
我的音频文件是 mp3。
这是我的代码:
smpl1.setOnTouchListener(new View.OnTouchListener()
{
public boolean onTouch(View arg0, MotionEvent theMotion)
{
switch (theMotion.getAction())
{
case MotionEvent.ACTION_DOWN:
sample = MediaPlayer.create(MainActivity.this, R.raw.bassdrum);
smpl1.setText("ON");
smpl1.setTextColor(Color.GREEN);
sample.start();
break;
case MotionEvent.ACTION_UP:
smpl1.setText("OFF");
smpl1.setTextColor(Color.RED);
sample.stop();
break;
}
return true;
}