2

nullAndroid チャット アプリでサウンドを再生しようとすると、リファレンスが表示されます。プロトコル文字列に笑顔が現れるたびに、オーディオ サウンドを再生したいと考えています。私のサウンド ファイルは OGG 形式で、res->raw->mysound.ogg.

SoundManagerAndroid クラスに次のクラスがあります。

package chatclient.utility;

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 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(1, 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); 
}

public void playLoopedSound(int index) { 

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

}

そして、これを呼び出すメインクラスのコードは次のとおりです。

私の中でonCreate

    mSoundManager = new chatclient.utility.SoundManager();
    mSoundManager.initSounds(getBaseContext());

    mSoundManager.addSound(1, R.raw.bigsmilesmiley ); //:D
    mSoundManager.addSound(2, R.raw.smilesmiley ); //:)
    mSoundManager.addSound(3, R.raw.tonguesmiley ); //:P
    mSoundManager.addSound(4, R.raw.confusedsmiley ); //:S
    mSoundManager.addSound(5, R.raw.ofacesmiley ); //:O
    mSoundManager.addSound(6, R.raw.sadsmiley); //:(

そして、それを呼び出すには:

if (pollServerResult.contains(":)")) {                
    mSoundManager.playSound(2);
} else if (pollServerResult.contains(":D)")) {    
    mSoundManager.playSound(1);
} else if (pollServerResult.contains(":P")) {         
    mSoundManager.playSound(3);
} else if (pollServerResult.contains(":S")) {       
    mSoundManager.playSound(4);
} else if (pollServerResult.contains(":O")) {       
    mSoundManager.playSound(5);
} else if (pollServerResult.contains(":(")) {       
    mSoundManager.playSound(6);
}

唯一の問題はnull、誰かがこれらの顔のいずれかを投稿したときに参照を取得することです。

4

1 に答える 1

1

これを変える:

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

これとともに :

public void addSound(int Index,int SoundID) {
    mSoundPoolMap.put(Index, mSoundPool.load(mContext, SoundID, 1));
}
于 2012-08-09T10:19:25.207 に答える