Android examples for Phone:Volume
get Phone Ring Volume
//package com.java2s; import android.content.Context; import android.media.AudioManager; public class Main { public static int getRingVolume(Context context) { return ((AudioManager) context .getSystemService(Context.AUDIO_SERVICE)) .getStreamVolume(AudioManager.STREAM_RING); }//from ww w. ja v a2s . c o m }