android: Play different sounds on each click

1k Views Asked by At

I have a button and on each click I want a different sound to play. I need some help getting the second sound to work. Here's my code so far:

package com.andrew.finnandjake;

import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;

public class Main extends Activity {
private SoundManager mSoundManager;

/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    mSoundManager = new SoundManager();
    mSoundManager.initSounds(getBaseContext());
    mSoundManager.addSound(1, R.raw.finn_whatthejugisthat);
    mSoundManager.addSound(2, R.raw.finn_wordtoyourmother);


    Button SoundButton = (Button)findViewById(R.id.Button1);
    SoundButton.setOnClickListener(new OnClickListener() {

        public void onClick(View v) {
            mSoundManager.playSound(1);
            mSoundManager.playSound(2);


        }
    });
}
}
1

There are 1 best solutions below

2
On BEST ANSWER

I would create an iterator that increments each time the button is clicked, and then use if statements to determine which sound to play based on the value of the iterator.