Android中SoundPool的使用

大家知道MediaPlayer占用的资源比较多,且不可以同时支持播放多个音频,所以我们有一种叫做SoundPool,比如我们常见的按键音或者是手机提示音,还比如我们在游戏的开发中会有大量的音效效果等,下边介绍一下她的用法:

步骤如下:

1.创建SoundPool对象

源码如下

 /**
     *SoundPool源码中的构造方法方法体
     *
     * @param maxStreams 最多可以容纳多少个音频
     * @param streamType 指定的声音类型,通过AudioManager类提供的常量进行指定
     * @param srcQuality 指定音频的质量,默认为0
     * @return a SoundPool object, or null if creation failed
     */
    public SoundPool(int maxStreams, int streamType, int srcQuality)

2.加载所需要播放的音频:

/**
     * @param context the application context
     * @param resId the resource ID
     * @param priority the priority of the sound. Currently has no effect. Use
     *                 a value of 1 for future compatibility.
     * @return a sound ID. This value can be used to play or unload the sound.
     */
 public int load(Context context, int resId, int priority);

3.播放音频

 /**
     * Play a sound from a sound ID.
     * @param soundID  通过load方法返回的音频
     * @param leftVolume  左声道的音量
     * @param rightVolume 右声道的音量
     * @param priority  优先级,值越大,优先级越高
     * @param loop  循环的次数:0为不循环,-1为循环
     * @param rate  指定速率,正常位1,为地位0.5,最高位2
     * @return non-zero streamID if successful, zero if failed
     */
    public final int play(int soundID, float leftVolume, float rightVolume,
            int priority, int loop, float rate);

4.案例如下:

(1)布局文件:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="horizontal" >

    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="风铃声" />

    <Button
        android:id="@+id/button2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="布谷鸟叫声" />

    <Button
        android:id="@+id/button3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="门铃声" />

    <Button
        android:id="@+id/button4"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="电话声" />

</LinearLayout>

(2)MainActivity.java文件

package com.mingrisoft;

import java.util.HashMap;

import android.app.Activity;
import android.media.AudioManager;
import android.media.SoundPool;
import android.os.Bundle;
import android.view.KeyEvent;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;

public class MainActivity extends Activity {
    private SoundPool soundpool;    //声明一个SoundPool对象
    //使用HashMap管理各种音频
    private HashMap<Integer, Integer> soundmap = new HashMap<Integer, Integer>();   //创建一个HashMap对象

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        Button chimes = (Button) findViewById(R.id.button1);    //获取“风铃声”按钮
        Button enter = (Button) findViewById(R.id.button2);     //获取“布谷鸟叫声”按钮
        Button notify = (Button) findViewById(R.id.button3);    //获取“门铃声”按钮
        Button ringout = (Button) findViewById(R.id.button4);   //获取“电话声”按钮

        soundpool = new SoundPool(5,
                AudioManager.STREAM_SYSTEM, 0); //创建一个SoundPool对象,该对象可以容纳5个音频流

        //将要播放的音频流保存到HashMap对象中
        soundmap.put(1, soundpool.load(this, R.raw.chimes, 1));
        soundmap.put(2, soundpool.load(this, R.raw.enter, 1));
        soundmap.put(3, soundpool.load(this, R.raw.notify, 1));
        soundmap.put(4, soundpool.load(this, R.raw.ringout, 1));
        soundmap.put(5, soundpool.load(this, R.raw.ding, 1));
        //为各按钮添加单击事件监听器
        chimes.setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View v) {
                soundpool.play(soundmap.get(1), 1, 1, 0, 0, 1); //播放指定的音频
            }
        });
        enter.setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View v) {
                soundpool.play(soundmap.get(2), 1, 1, 0, 0, 1);//播放指定的音频

            }
        });
        notify.setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View v) {
                soundpool.play(soundmap.get(3), 1, 1, 0, 0, 1);//播放指定的音频

            }
        });
        ringout.setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View v) {
                soundpool.play(soundmap.get(4), 1, 1, 0, 0, 1);//播放指定的音频
                soundpool.play(soundpool.load(MainActivity.this, R.raw.notify, 1), 1, 1, 0, 0, 1);
            }
        });

    }
    //重写键被按下的事件
    @Override
    public boolean onKeyDown(int keyCode, KeyEvent event) {
        soundpool.play(soundmap.get(5), 1, 1, 0, 0, 1);     //播放按键音
        return true;
    }
}

另外在资源文件中的raw文件中有几个小的铃声,这里不再显示。

源代码如下:

时间: 2024-10-04 14:32:59

Android中SoundPool的使用的相关文章

Android中SoundPool放声音

它适合播放那些需要反复播放,但时间较短的音效.它支持同时播放多种声音,这些声音在系统开始时会加载到列表中,按照这些声音的id,我们可以调用这些音效. 1.创建一个SoundPool对象:new SoundPool(int maxStreams, int streamType, int srcQuality); 第一个参数为soundPool可以支持的声音数量,这决定了Android为其开设多大的缓冲区,第二个参数为声音类型,最后参数为声音品质,品质越高,声音效果越好,但耗费更多的系统资源. 2.

android中常见声音操作方式(Ringtone,SoundPool,MediaPlayer)小结

在Android开发中有时候需要用到播放声音操作,在android API 的media包中有三种方式可供我们选择,它们分别是Ringtone,SoundPool,MediaPlayer.因为在我目前的项目中暂时用不到播放很长的音频文件,只需要播放一些简短的提示音,所以在这篇博文中我只是简单的记录下. 1.Ringtone.java 2.SoundPool.java 3.MediaPlayer.java 4.demo 5.bug record 注意: 关于这三个类的介绍我全部用的是android

Android中的音频处理------SoundPool,MediaRecorder,MediaPlayer以及RingStone总结

用Soundpool可以播一些短的反应速度要求高的声音, 比如游戏中的爆破声, 而Mediaplayer适合播放长点的. MediaRecorder主要用来录音. SoundPool载入音乐文件使用了独立的线程,不会阻塞UI主线程的操作. 但是这里如果音效文件过大没有载入完成,我们调用play方法时可能产生严重的后果, 这里AndroidSDK提供了一个SoundPool.OnLoadCompleteListener类来帮助我们了解媒体文件是否载入完成, 我们重载onLoadComplete(S

Android中的soundpool小结

之前只知道android中可以用mediaplayer播放音乐,原来今天才发现 可以用soundpool,用soundpool可以播一些短的反应速度要求高的声音, 比如游戏中的爆破声,而mediaplayer适合播放长点的. 1. SoundPool载入音乐文件使用了独立的线程,不会阻塞UI主线程的操作.但是这里如果音效文件过大没有载入完成,我们调用play方法时可能产生严重的后果,这里Android SDK提供了一个SoundPool.OnLoadCompleteListener类来帮助我们了

Android中使用SoundPool来播放音频

今天找素材重做FlappyBird时学习了一下怎样为应用设置背景音频,发现通过封装SoundPool类就能够非常好的做到这一点. SoundPool类比較适合播放一些类似游戏音效这样的比較短促并且较小的音频流,并且它支持同一时候播放多个音频流,而比較大的音频更适合用MediaPlayer来播放. 大致解说一下SoundPool类使用时的基本使用方法: 1. 把要用到的音频资源通过load()方法载入. 2. 通过创建的SoundPool对象的setOnLoadCompleteListener()

Android中播放声音

在Android系统中,有两种播放声音的方式,一种是通过MediaPlayer,另外一种是通过SoundPool.前者主要用于播放长时间的音乐,而后者用于播放小段小段的音效,像按键音这种,其优点是资源占用了小,同时能够载入多个声音片段,再根据需要选择播放.下面分别介绍这两种方式: 1.MediaPlayer MediaPlayer有两种创建方式,方式一: MediaPlayer mp = new MediaPlayer() 通过这种方式创建MediaPlayer对象,必须在创建对象之后使用下面的

Android 使用SoundPool播放音效

在Android开发中我们经常使用MediaPlayer来播放音频文件,但是MediaPlayer存在一些不足,例如:资源占用量较高.延迟时间较长.不支持多个音频同时播放等.这些缺点决定了MediaPlayer在某些场合的使用情况不会很理想,例如在对时间精准度要求相对较高的游戏开发中. 本文地址:http://www.cnblogs.com/wuyudong/p/5679191.html,转载请注明源地址. 在游戏开发中我们经常需要播放一些游戏音效(比如:子弹爆炸,物体撞击等),这些音效的共同特

android中添加背景音乐

方法一:这是使用java中的多线程,另外new出一个类,用类来启动音乐. 这个方法,就像当初写java的小游戏一样,不过是在电脑上运行的,可以控制每一个动作,比如你的触碰动作,但是,在我这个游戏中,我需要的不是一点的音乐,虽               然后期会用到,而是一开始就有的. 不过,用这个方法,没用service,就是开起来的时候,会很卡,而且会闪退. 1 package com.example.flybird_anla; 2 3 4 import java.util.HashMap;

Android的SoundPool

开发Android软件中我们可能经常需播放多媒体声音文件,一般使用MediaPlayer类但该类占用资源较多,对于游戏等应用可能不是很适合,SoundPool类在SDK的android.media.SoundPool,顾名思义是声音池的意思.主要播放一些较短的声音片段,可以从程序的资源或文件系统加载,相对于MediaPlayer类可以做到使用较少的CPU资源和较短的反应延迟.           SoundPool和其他声音播放类相比,其特点是可以自行设置声音的品质.音量.播放比率等参等.并且它