我正在使用使用SoundPool播放声音的图像按钮。以下是其中一个图像按钮的示例代码:
ImageButton Button1 =(ImageButton)findViewById(R.id.sound); Button1.setOnTouchListener(new OnTouchListener(){
public boolean onTouch(View v, MotionEvent event) {
if (event.getAction() == MotionEvent.ACTION_DOWN ) {
mSoundManager.playSound(1);
return false;
}
return false;
}
});
由于某种原因,它不允许您同时单击多个按钮。是因为我正在构建1.6 SDK吗?
谢谢!
答案 0 :(得分:0)
为什么你不使用onClickListener ??????
ImageButton t = new ImageButton(this);
t.setOnClickListener(clickListener);