Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6209271
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T05:57:20+00:00 2026-05-24T05:57:20+00:00

Apologies for asking this question again. I thought I found the infomation I was

  • 0

Apologies for asking this question again. I thought I found the infomation I was after but public void stop() doesnt seem to work. I’m using Soundpool and SoundManger. I want just 1 sound to play at any one time. Once another button is pressed I want all previous sounds to stop and just play the most recently pressed button.

Here is my SoundManger:

package com.androidbook.ufgsoundboard;

import java.util.HashMap;

import android.content.Context;
import android.media.AudioManager;
import android.media.SoundPool;



public class SoundManager {

    private  SoundPool mSoundPool; 
    private  HashMap<Integer, Integer> mSoundPoolMap; 
    private  AudioManager  mAudioManager;
    private  Context mContext;
    public static final int maxSounds = 1;

    public SoundManager()
    {

    }

    public void initSounds(Context theContext) { 
         mContext = theContext;
         mSoundPool = new SoundPool(4, AudioManager.STREAM_MUSIC, 0); 
         mSoundPoolMap = new HashMap<Integer, Integer>(); 
         mAudioManager = (AudioManager)mContext.getSystemService(Context.AUDIO_SERVICE);         
    } 

    public void addSound(int Index,int SoundID)
    {
        mSoundPoolMap.put(Index, mSoundPool.load(mContext, SoundID, 1));

    }

    public void playSound(int index) { 

         int streamVolume = mAudioManager.getStreamVolume(AudioManager.STREAM_MUSIC); 
         mSoundPool.play(mSoundPoolMap.get(index), streamVolume, streamVolume, 1, 0, 1f); 
    }


}

And here is my Soundboard:

package com.androidbook.ufgsoundboard;

import com.androidbook.ufgsoundboard.SoundManager;


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

public class Soundboard extends Activity {
    private SoundManager mSoundManager;

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

        mSoundManager = new SoundManager();
        mSoundManager.initSounds(getBaseContext());
        mSoundManager.addSound(1, R.raw.sound1);
        mSoundManager.addSound(2, R.raw.sound2);
        mSoundManager.addSound(3, R.raw.sound3);
        mSoundManager.addSound(4, R.raw.sound4);
        mSoundManager.addSound(5, R.raw.sound5);
        mSoundManager.addSound(6, R.raw.sound6);
        mSoundManager.addSound(7, R.raw.sound7);
        mSoundManager.addSound(8, R.raw.sound8);
        mSoundManager.addSound(9, R.raw.sound9);
        mSoundManager.addSound(10, R.raw.sound10);
        mSoundManager.addSound(11, R.raw.sound11);
        mSoundManager.addSound(12, R.raw.sound12);
        mSoundManager.addSound(13, R.raw.sound13);
        mSoundManager.addSound(14, R.raw.sound14);
        mSoundManager.addSound(15, R.raw.sound15);
        mSoundManager.addSound(16, R.raw.sound16);
        mSoundManager.addSound(17, R.raw.sound17);
        mSoundManager.addSound(18, R.raw.sound18);




        Button SoundButton1 = (Button)findViewById(R.id.button3);
        SoundButton1.setOnClickListener(new OnClickListener() {


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

    }
});       
        Button SoundButton2 = (Button)findViewById(R.id.button4);
        SoundButton2.setOnClickListener(new OnClickListener() {

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

    }
});    
        Button SoundButton3 = (Button)findViewById(R.id.button5);
        SoundButton3.setOnClickListener(new OnClickListener() {

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

    }
});    
        Button SoundButton4 = (Button)findViewById(R.id.button6);
        SoundButton4.setOnClickListener(new OnClickListener() {

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

    }
});    
        Button SoundButton5 = (Button)findViewById(R.id.button7);
        SoundButton5.setOnClickListener(new OnClickListener() {

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

    }
});   
        Button SoundButton6 = (Button)findViewById(R.id.button8);
        SoundButton6.setOnClickListener(new OnClickListener() {

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

    }
});    
        Button SoundButton7 = (Button)findViewById(R.id.button9);
        SoundButton7.setOnClickListener(new OnClickListener() {

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

    }
});
  Button SoundButton8 = (Button)findViewById(R.id.button10);
       SoundButton8.setOnClickListener(new OnClickListener() {

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

    }
 });    
        Button SoundButton9 = (Button)findViewById(R.id.button11);
        SoundButton9.setOnClickListener(new OnClickListener() {

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

    }
});    
       Button SoundButton10 = (Button)findViewById(R.id.button12);
       SoundButton10.setOnClickListener(new OnClickListener() {

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

    }
 });    
        Button SoundButton11 = (Button)findViewById(R.id.button13);
        SoundButton11.setOnClickListener(new OnClickListener() {

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

    }
});    
        Button SoundButton12 = (Button)findViewById(R.id.button14);
        SoundButton12.setOnClickListener(new OnClickListener() {

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

    }
});    
       Button SoundButton13 = (Button)findViewById(R.id.button15);
       SoundButton13.setOnClickListener(new OnClickListener() {

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

    }
 });    
        Button SoundButton14 = (Button)findViewById(R.id.button16);
        SoundButton14.setOnClickListener(new OnClickListener() {

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

    }
});    

        Button SoundButton15 = (Button)findViewById(R.id.button17);
                SoundButton15.setOnClickListener(new OnClickListener() {

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

            }
        });
                Button SoundButton16 = (Button)findViewById(R.id.button18);
                SoundButton16.setOnClickListener(new OnClickListener() {

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

            }
        });    
                Button SoundButton17 = (Button)findViewById(R.id.button19);
                SoundButton17.setOnClickListener(new OnClickListener() {

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

            }
        });    
                Button SoundButton18 = (Button)findViewById(R.id.button20);
                SoundButton18.setOnClickListener(new OnClickListener() {

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

            }

                });
                Button back = (Button) findViewById(R.id.button1); 
                back.setOnClickListener(new View.OnClickListener() { 
                    public void onClick(View view) {
                         // fire intent
                        finish(); // finish current activity
                        Intent myIntent = new Intent(view.getContext(), 
                                UFGcharactersActivity.class); 
                        startActivityForResult(myIntent, 0);

                    } 


                }); 





        Button next = (Button) findViewById(R.id.button2); 
        next.setOnClickListener(new View.OnClickListener() { 
            public void onClick(View view) {
                 // fire intent
                finish(); // finish current activity
                Intent myIntent = new Intent(view.getContext(), 
                        Soundboardb.class); 
                startActivityForResult(myIntent, 0);

            } 


        });}

        };    

I’m hoping its a simple change that I just cant seem to find or work out.

Thank you all in anticipation.

Paul

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T05:57:20+00:00Added an answer on May 24, 2026 at 5:57 am

    In your initSounds() method in the SoundManager, change 4 to 1 :

    mSoundPool = new SoundPool(1, AudioManager.STREAM_MUSIC, 0); 
    

    I came across the same problem once 🙂

    Good Luck

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

apologies if I make any cardinal errors in question asking, this is my first
I'm new to iPhone development, so apologies if this is a silly question, but
This is a new question which arose out of this question Due to answers,
(Long time reader of SO, first time asking a q. I'm quite new to
I decided that I was ready to try something new, after a few years
Edit: You can get the full source here: http://pastebin.com/m26693 Edit again: I added some
I am relatively new to PHP, so my apologies if the answer is trivial.
I have been reading a few questions previously asked and I haven't come across
Are there particular cases where native text manipulation is more desirable than regex? In
For an image file (JPEG) that has been uploaded to the server via a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.