Java tutorial
//package com.java2s; //License from project: Open Source License import android.content.Context; import android.media.AudioManager; public class Main { public static void setVolume(int volume, Context context) { AudioManager manager = (AudioManager) context.getSystemService(Context.AUDIO_SERVICE); manager.setStreamVolume(AudioManager.STREAM_MUSIC, volume, 0); } }