0

Change Sound of media player in android

I am trying to change sound of media player. Default sound in beep now wants to change the beep sound. I have checked AudioManager property but not change.

setVolumeControlStream(AudioManager.STREAM_MUSIC);
user1722880
  • 71
  • 2
  • 12

1 Answers1

0

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.setVolumn(0,0);
        break;
}
Community
  • 1
  • 1
Pramod J George
  • 1,723
  • 12
  • 24