如何在扩展Button的类中使用SoundPool?

时间:2012-10-16 12:14:00

标签: java android button soundpool

  

可能重复:
  Play sound with SoundPool

如何设置SoundPool,我尝试了常规方法,但没有播放声音。音乐文件没有问题。我希望Sound在Action_Down上播放并在Action_up停止。媒体播放器工作,但按钮响应延迟。

package dubpad.brendan;

import android.content.Context;
import android.media.MediaPlayer;
import android.util.AttributeSet;

import android.view.MotionEvent;
import android.widget.Button;

public class TestButton3 extends Button {
MediaPlayer mpButtonClick;


public TestButton3(final Context context, final AttributeSet attrs) {
    super(context, attrs);
    // TODO Auto-generated constructor stub
}

@Override
public boolean onTouchEvent(final MotionEvent event) {

    if (event.getAction() == MotionEvent.ACTION_DOWN) {




    }
    if (event.getAction()==MotionEvent.ACTION_UP){

    }
    return super.onTouchEvent(event);
}
}

0 个答案:

没有答案