Android中打开扬声器关闭麦克风的代码实现

//获取音频服务  
AudioManager audioManager = (AudioManager) this.getSystemService(Context.AUDIO_SERVICE);  
//设置声音模式  
audioManager.setMode(AudioManager.STREAM_MUSIC);  
//关闭麦克风  
audioManager.setMicrophoneMute(false);  
// 打开扬声器  
audioManager.setSpeakerphoneOn(true);  
//实例化一个SoundPool对象  
SoundPool soundPool =new SoundPool(10, AudioManager.STREAM_SYSTEM, 5);  
//加载声音  
int  id = soundPool.load(this,R.raw.beep,5);  
//播放声音  
 soundPool.play(id, 1, 1, 0, 0, 1);  
另外必须加上权限:

你可能感兴趣的:(Android,打开,关闭,麦克风)