【发布时间】:2016-01-12 08:17:55
【问题描述】:
改变音高:
soundPool = new SoundPool(50, AudioManager.STREAM_MUSIC, 0);
/** Sound ID for Later handling of sound pool **/
soundId = soundPool.load(this, R.raw.sounds, 1);
播放:
streamId = soundPool.play(soundId, 1, 1, 1, 3, pitch);
如何保存文件?
【问题讨论】:
标签: android audio mp3 soundpool