Android Mediaplayer adjust volume

纵然是瞬间 提交于 2019-12-12 17:16:33

问题


Anyone know how can I increase/decrease the volume of the sound from mediaplayer by clicking on the volume button at the side of the phone? And how can I mute the sound if the phone was set to silent mode?

Code I'm using:

mp = MediaPlayer.create(this, R.raw.sound);
mp.start();

回答1:


I think this is what you might be interested in:

1, increase/decrease the volume of the sound: Link Here

Basically Override the onKeyDown and then call mp.setVolumn(float leftVolume,float rightVolume);

2, mute the sound if the phone was set to silent mode

AudioManager am = (AudioManager)getSystemService(Context.AUDIO_SERVICE);

switch (am.getRingerMode()) {
    case AudioManager.RINGER_MODE_SILENT:
        mp.setVolume(0,0);
        break;
}



回答2:


Another way to do it is in your mediaPlayer to set

mp.setAudioStreamType(AudioManager.STREAM_RING);


来源:https://stackoverflow.com/questions/11661943/android-mediaplayer-adjust-volume

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!