Change Media volume in Android?
问题 Can I change the media volume? and how? I used this so far: setVolumeControlStream(AudioManager.STREAM_MUSIC); But have a seekbar and want to change the media volume, not ring volume. So can someone show me how to just change the media volume at onCreate() and I fix the seekbar later. 回答1: The right method to use would be setStreamVolume on your AudioManager . It could looks like this AudioManager audioManager = (AudioManager)getSystemService(Context.AUDIO_SERVICE); audioManager