为什么多点触控不能用于我的图像按钮?

时间:2010-05-02 00:55:43

标签: android

我正在使用使用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吗?

谢谢!

1 个答案:

答案 0 :(得分:0)

为什么你不使用onClickListener ??????

    ImageButton t = new ImageButton(this);
    t.setOnClickListener(clickListener);