Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I try to make play sound application with soundpool, I have 3 button for play sound, How to play multiple sound if touch slide the button? I was search tutorial, But still confused use MotionEvent. Please help.. This my code :

sp = new SoundPool (5, AudioManager.STREAM_MUSIC, 0);
    player1 = sp.load(this, R.raw.ndang, 1);
    player2 = sp.load(this, R.raw.nding, 1);
    player3 = sp.load(this, R.raw.ndung, 1);

    ndang = (ImageButton) this.findViewById(R.id.ndang);
    ndang.setOnClickListener(new OnClickListener() {
        public void onClick(View arg0) {
            // TODO Auto-generated method stub
            sp.play(player1, 1, 1, 0, 0, 1);
        }
    });

    ndang = (ImageButton) this.findViewById(R.id.ndang2);
    ndang.setOnClickListener(new OnClickListener() {
        public void onClick(View arg0) {
            // TODO Auto-generated method stub
            sp.play(player1, 1, 1, 0, 0, 1);
        }
    });

    nding = (ImageButton) this.findViewById(R.id.nding);
    nding.setOnClickListener(new OnClickListener() {
        public void onClick(View arg0) {
            // TODO Auto-generated method stub
            sp.play(player2, 1, 1, 0, 0, 1);
        }
    });
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.