Re: [android-developers] custom volume control slider with the MediaPlayer

2011-02-08 Thread Stephen Lau
You could just use a Seekbar and hook up the listeners to AudioManager.setStreamVolume(): http://developer.android.com/reference/android/media/AudioManager.html#setStreamVolume(int, int, int) DanielleM

[android-developers] custom volume control slider with the MediaPlayer

2011-02-08 Thread DanielleM
Hello all: In my app I an using a MediaPlayer object to play some streaming audio. I would like to be able to display on the screen a volume control slider. Can someone point me in the right direction for this? Perhaps there is some volume object I can call and just adjust the foreground and backg