0

このサウンドプール クラスを実装しようとしました (チュートリアルの助けを借りて) が、仮想デバイスで実行しようとするとサウンドが再生されません...読み込み時にサウンドが再生されます。

ここにソースコードがあります。

public class MainActivity extends Activity {

private SoundPool soundpool;
private boolean soundPoolLoaded = false;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    // Create a new SoundPool instance.
    // 2 = number of sounds that can be simultaneously played
    // AudioManager.STREAM_MUSIC = The type of sound stream. STREAM_MUSIC is the most common one
    // 0 = sound quality, default is 0.
    // setOnLoadCompleteListener loads the file 
    soundpool = new SoundPool(2, AudioManager.STREAM_MUSIC, 0);
    soundpool.setOnLoadCompleteListener(new OnLoadCompleteListener() {
        @Override
        public void onLoadComplete(SoundPool soundPool, int sampleId, int status) {
            soundPoolLoaded = true;
        }
    });

    playSound("car_phonic");
}


// This method will load a sound resource from the res/raw folder by the input name given as a string (soundName).
// If the sound resource is found by name, it will attempt to play the sound
// soundPoolLoaded value becomes true when the file is fully loaded
public void playSound(String soundName) {
    if(soundPoolLoaded == true)
    {
        // Get the current context resources and find the correct sound resource for playing the sound
        Resources res = this.getResources();
        int soundId = 0;
        soundId = res.getIdentifier(soundName, "raw", this.getPackageName());

        if(soundId != 0){   
        soundpool.play(soundId, 1, 1, 0, 0, 1);
        }


        SystemClock.sleep(500);
        playSound(soundName);

    }
    }
}

どんな助けでも大歓迎です!

4

2 に答える 2

1
  • play() は、一般的な Android リソース ID ではなく、SoundPools load() によって返されたサウンド ID を取ります。
  • onLoadComplete が呼び出され、サウンド ファイルのロードが終了します。sampleId 引数に注目してください。

したがって、基本的な形式では次のようになります。

soundpool.setOnLoadCompleteListener(new OnLoadCompleteListener() {
    @Override
    public void onLoadComplete(SoundPool soundPool, int sampleId, int status) {
        soundpool.play(sampleId, 1, 1, 0, 0, 1);
    }
});

soundpool.load(this, R.raw.car_phonic, 0);

SoundPool はバックグラウンドでデータをロードするため、サンプルはすぐには利用できないことに注意してください。

于 2013-04-18T09:32:48.483 に答える
0

サウンドプールの使用方法は次のとおりです

soundPool = new SoundPool(2, AudioManager.STREAM_MUSIC, 0);
AudioManager audioManager = (AudioManager) getSystemService(Context.AUDIO_SERVICE);
        float curVolume = audioManager
                .getStreamVolume(AudioManager.STREAM_MUSIC);
        float maxVolume = audioManager
                .getStreamMaxVolume(AudioManager.STREAM_MUSIC);
        float leftVolume = curVolume / maxVolume;
        float rightVolume = curVolume / maxVolume;
        int priority = 10;
        // int priority_1=5;
        int no_loop = 0;
        float normal_playback_rate = 1f;


final int ID=1;
    soundPool.play(soundPoolMap.get(ID,
                        leftVolume, rightVolume, priority, no_loop,
                        normal_playback_rate);
于 2013-04-18T12:10:36.120 に答える