The AudioManager in Android SDK provides access to volume and ringer mode control.

learn more… | top users | synonyms

1
vote
2answers
71 views

How can I send a pre-recorded(wav) file during a voice call?

I want to develop an application through which if the caller calls you, the call should be answered automatically without user's involvement and the caller could hear a pre-recorded voice which is ...
0
votes
1answer
52 views

Android: Use TelephonyManager or AudioManager for checking phone state before executing code

My question is, what is the best way to get the phone state (is it in call mode), to decide the further way. I would like to check for phone state before deciding whether execute sound notification or ...
0
votes
0answers
56 views

grooveshark api & soundmanager

Is it possible to play sounds hosted on grooveshark on another website? whith soundcloud it's this simple : SC.get('/resolve', { url: o.href }, function(track) { ...
2
votes
0answers
54 views

How to Detect Headset Capabilities

I know how to detect whether a headset is plugged in but some headsets (e.g Samsung EHS60ANNBE) come with the PAUSE/PLAY (a.k.a KeyEvent.KEYCODE_HEADSETHOOK) button only, without the PREV/NEXT... I ...
0
votes
1answer
150 views

How to Text-to-Speech plays on Bluetooth in Android?

I'm a newbie for android. I've created an app that can read Incoming messages using Android Text-To-Speech. Up to now its fine with it. Now user's want It has to play over paired Bluetooth. I'd read ...
11
votes
2answers
105 views

What triggers (or generates) KeyEvent.ACTION_MULTIPLE?

The documentation for KeyEvent.ACTION_MULTIPLE says: "multiple duplicate key events have occurred in a row, or a complex string is being delivered. If the key code is not {#link ...
2
votes
1answer
380 views

Volume change Listener: Is registerMediaButtonEventReceiver preferable to onKeyDown?

Looking for a "most comprehensive & compatible (i.e. all Android versions...)" way to listen to volume changes, I found 2 different approaches to handle this: registerMediaButtonEventReceiver ...
0
votes
0answers
256 views

AudioManager MODE_IN_CALL interferences

I'm using AudioManager to play a sound through earpiece just before a call is placed so I use AudioManager setMode(MODE_IN_CALL). I'm not having any problems except in Galaxy S3 where after playing ...
0
votes
0answers
473 views

Android set notification vibration (like new SMS etc) in RINGER_MODE_VIBRATE

I'm working on a widget pack and one of them contains some kind of a vibration and sound toggler. Everything works OK and it's ready for publishing but with one minor detail. When Audio Manager's ...
18
votes
3answers
411 views

KeyEvent.ACTION_UP fired TWICE for ACTION_MEDIA_BUTTON

I have this broadcast receiver for ACTION_MEDIA_BUTTON which actually works for both Android 2.x and Android 4.1, but for some strange reason, on Android 2.x (only), I get each even twice (for a ...
0
votes
1answer
63 views

Hide the volume toast when muting in android

I use setStreamMute(int, boolean) method from the AudioManager class on Android 4.0.3. Every time I call this method a toast with the current volume appears in the UI. Is there a way to hide that ...
7
votes
1answer
156 views

How to pass a parameter to a subclass of BroadcastReceiver?

I managed to get my headset buttons get recognized by my app when pressed, but one of the buttons needs to call a method that's in MyCustomActivity. The problem is onReceive's 1st parameter is a ...
2
votes
2answers
129 views

How do I register in manifest an *inner* MEDIA_BUTTON BroadcastReciver?

I managed to get my headset buttons get recognized by my app when pressed, but one of the buttons needs to call a method that's in MyCustomActivity. The problem is onReceive's 1st parameter is a ...
1
vote
1answer
139 views

Why does ACTION_MEDIA_BUTTON fail to process events?

Following the training section on how to use hardware playback control keys to control audio playback, I create a listener class: public class RemoteControlReceiver extends BroadcastReceiver { ...
1
vote
0answers
234 views

Problems with playing sound in Android using SoundPool

In my Android game, I am playing short sound effects using AudioManager and SoundPool. While this works fine on Samsung Galaxy Tab 10.1, when I ported the game to Samsung Galaxy SIII, I am ...
0
votes
0answers
11 views

how to shield the toast ,When I use AudioManager to adjust the volume of Music ,in Andorid developing?

AudioManage mAudioManager = (AudioManager) activity.getSystemService(Context.AUDIO_SERVICE); int maxMusic = mAudioManager.getStreamMaxVolume(AudioManager.STREAM_MUSIC); ...
1
vote
2answers
101 views

How to turn vibrate on and keep sound on as well

Since AudioManager.RINGER_MODE_VIBRATE also silences the device, how do you turn on vibrate and keep the current volume level (e.g. if there's an incoming call the phone will vibrate AND play the ring ...
1
vote
1answer
136 views

Changing ringer volume during ringing

I'd like to change the ringer volume during ringing. Code below sets it during ringing (it is changed in system settings) but it doesn't come to effect with actual ringing (only the next ring call ...
1
vote
2answers
495 views

Use AudioTrack with AudioManager setSpeakerphoneOn

I am using AudioTrack to play the sound I recieve through UDP sockets. I am getting a lot of noise along with the sound so I decided to use AudioManager. But AudioManager changes sound routing beyond ...
0
votes
0answers
113 views

How to adjust the Volume of music, and set other volume to zero in my application?

I want to set the volume of Music to Maximum ,and set the other volume to zero, I use the following codes, AudioManage mAudioManager = (AudioManager) activity.getSystemService(Context.AUDIO_SERVICE); ...
0
votes
2answers
46 views

How do I implement AUDIO_SERVICE in widget

I am implementing audio manager widget application. I would like to use the following code. this.getSystemService(Context.AUDIO_SERVICE) but I can not use because I extend AppWidgetProvider ...
1
vote
0answers
95 views

SoundManager and monitorenter and monitorexit

I try to control sound with monitorenter and monitorexite this the code i use but this not work for me these erorrs shown : monitorenter cannot be resolved to a variable , monitorenter cannot be ...
0
votes
0answers
307 views

Mixing audio with music player and AudioManager.requestAudioFocus

Is it possible to mix my app's audio with the music player audio? I find that by default, android does mix the audio of the music player with my app. However this stops working after calling ...
0
votes
1answer
109 views

In Android, how can I play mp3 through telephony and not allow to play through wired headset or bluetooth headset even if it is plugged in?

I would like to play a music media (e.g. mp3) file in a telephony way instead of speaker way. How can I do it? When a wired headset or bluetooth headset plugs in, I want to keep it playing through ...
2
votes
2answers
795 views

Set the volume control stream from a service on Android

I'm working on a music app which consists in a Service playing music while other apps are running. In order to enjoy the music and only the music, the Service mutes all the other apps. In order to do ...
0
votes
1answer
235 views

setRingerMode to normal not working

I have seen a lot of questions about ringer mode. Nothing seems to give me a clue on the problem I am facing. I have set ringer mode to the normal RING mode for a service that gets started in the ...
0
votes
0answers
415 views

Android: SeekBar volume control in a AsyncTask

I know how to control sound volume with a seekbar: audioManager = (AudioManager)getSystemService(Context.AUDIO_SERVICE); int maxVolume = ...
0
votes
0answers
374 views

Android: onAudioFocusChange listener not called

As a side-project, I recently tried some audio playing in Android. So far, with API 8 (2.2) in mind, I was able to do a nice GUI and playing some music. Something really crude, bear in mind. It works ...
1
vote
2answers
2k views

How to set notification sound volume programmatically?

I have this method in my main activity private void beep() { AudioManager manager = (AudioManager) getSystemService(Context.AUDIO_SERVICE); ...
2
votes
2answers
4k views

Changing the Vibrate settings in Jelly Bean, Android

I am looking for how we change the vibrate settings in Jelly Bean. I found that all the pre-JB vibrate settings have been deprecated, but don't see any new AudioManager.[change the vibrate settings] ...
0
votes
1answer
523 views

Android setStreamVolume to ZERO doesn't work in Android 4

I noticed that under Android 4.x setting ring volume to 0 is not possible. If I execute this code and then I go to Settings--> Sound --> Volumes I can see it is set to 1. I ...
2
votes
2answers
201 views

Is device playing something?

Is there a way to know if the telephone is playing anything? for example a ringtone. My phone doesn't work properly and I sometimes get a call without a ringtone. I mean, I can see the incoming call ...
1
vote
1answer
755 views

Android setStreamVolume for STREAM_RING doesn't always work while RINGING

I am trying to do this simple App that allows the phone to ring but not to play a sound when receiving notifications under Android 4 (ICS). In order to do that I set the ring/notification stream to 0 ...
0
votes
0answers
48 views

Need to Stop FM when VOIP call resumes or resumes FM when VOIP call ends

I need to Stop FM when VOIP call resumes or resumes FM when VOIP call ends I have tried to implement TelephonyManager.PhoneStateListener but its not intercepting VOIP calls. Any advice ??
0
votes
1answer
369 views

muting one audio and playing other audio in its place (VideoView)

package z.x; import java.io.File; import java.io.FileNotFoundException; import java.io.IOException; import java.io.RandomAccessFile; import android.app.Activity; import android.content.Context; ...
0
votes
0answers
201 views

how to detect a VoIP call using AudioManager.getMode()

i want to detect if there is a VoIP call is been made, i have found the following Constants AudioManager.MODE_IN_COMMUNICATION and MediaRecorder.AudioSource.VOICE_COMMUNICATION iam using this code ...
0
votes
2answers
248 views

Media Player Error

This is my code for controlling two seekbars to set volume control in media player for two simultaneously playing sound. But the sound is turned on and off on the progress change of seekbar, it does ...
2
votes
0answers
117 views

Aurasma does not release audio resources

I am writing an iphone application where I use also Aurasma sdk for augmented reality. The application for other things use the microphone. At beginning the microphone work fine. If I call Aurasma and ...
0
votes
4answers
5k views

Android Audio Service has leaked Service Connection

I am developing application on music player . I am facing error like. '*.MusicPlayerTabWidget has leaked ServiceConnection * Please gave you comments regarding this. I share my Logcat for this also. ...
0
votes
2answers
536 views

AudioFocusChangeListener cannot listen

I encounter a problem using the AudioFocusChangeListener, but still cannot listen to the audio focus change. Could someone help me find the reasons? Here is what I do: In my FM app, when FM starts ...
0
votes
1answer
257 views

Location of compiled Android AudioManager.java

I have modified the android system source file audiomanager.java for my own purposes and compiled the whole ROM. However, i dont want to flash the whole ROM. Which file is audiomanager.java compiled ...
1
vote
0answers
347 views

Android's AudioManager.getMode() seems unreliable. Same situation produces different results

I am currently working on an audio player that is supposed to pause/stop when losing audio focus, for example when a call comes in. While I got this working fine by using an ...
0
votes
1answer
345 views

Android Application return NULL

Before start let me say I have been searching around for last two days to resolves the Error , did find some usable solution which did't work with me. SO FInally I am posting my code here : Regarding ...
0
votes
1answer
950 views

Android App : Media app not muting while in PHONE call or in ringing mode

This is my first self taught project .. in this project in webview i am playing a flash video from my website... I is working fine ... i mean its palying music etc no problem on that side.. only ...
-1
votes
2answers
423 views

How to control the background music in Android

If music is active in the background, how do I pause it while my application is running?
2
votes
3answers
1k views

setStreamMute never unmutes

In the documentation, it is said: The mute command is protected against client process death: if a process with an active mute request on a stream dies, this stream will be unmuted automatically. ...
2
votes
1answer
384 views

why is abandonAudioFocus not working in Android Music app

Im using this code to get AudioFocus and it works ok with Android Music app ( the one preinstalled ) int result = audioManager.requestAudioFocus(meService, ...
0
votes
1answer
1k views

Set volume to specific value and back again

I would like my users to be able to choose that an alarm-sound plays at the highest possible volume. For this I need to set media volume to max, play the alarm and set the volume back to the original ...
0
votes
1answer
746 views

Disable SMS and Email Notifications in Android

Is there any way within (or non-standard way) to disable email and sms alerts / notifications when an Android application is running? I found a way to mute the phone ringer, but I want to stop the ...
-1
votes
1answer
3k views

I want change the volume of ringertonevolume

i used this code to adjust volume but it didn't work int volume=23; audio.setStreamVolume(AudioManager.STREAM_RING,volume, AudioManager.FLAG_PLAY_SOUND|AudioManager.FLAG_ALLOW_RINGER_MODES);}

1 2