Android : Way To Play Sound On Active Call?
Aug 28, 2009
I am playing one audio file when call arrives so the caller can receive it at other side but the issue is yet the opposite caller is not able to listen it what could be wrong in it. Can some one tell me what can be the issue in it ?
View 2 Replies
Oct 10, 2010
Could it be possible now, which we can develop an Android application having the following requirement for its working steps Automatic receive the call, then Play some sound out to the caller, wait for DTMF response, then Record the caller sound (in the case that they permit, by pressing 1 as DTMF response)Callee can play back the recoreded sound later.
View 1 Replies
View Related
Jan 26, 2012
I Can't Play a sound when a call Out.
View 5 Replies
View Related
Jul 10, 2010
In my application, RTSP streams play only sound without video, but if i specify the video path as a local file, it plays the video and audio.
How would i get the RTSP streams to show video?
CODE:.................
View 2 Replies
View Related
Aug 7, 2009
Is it possible to play audio over an active phone call, so the other end can hear it?
For example: A and B are talking on the phone. A presses a button that pulls audio from a resource and plays it over the phone call to B.
If so, what libraries should I look into? If not, is this something that could become accessible on rooted phones? (Of course, only other rooted phones would be able to use the application then...)
View 7 Replies
View Related
Oct 4, 2010
Wassup everyone, when I'm on a call my 3g is not active, but reappears when call has ended, then I'm able to use the mobile network.
View 4 Replies
View Related
Jan 27, 2009
I'm trying to write a convenience app that needs to bring up the active dialer for a connected call, but I'm having issues after trying a couple of approaches.
ACTION_DIAL - I've tried starting a new dialing activity and while this brings up a new dialer, it's not connected to the existing call so pressing buttons on the new dialer produces no dial tones on the receiver's end.
ToneGenerator - Created my own little dialer activity and hooked up ToneGenerator calls in response to button clicks, but then found out that it only generates tones in the dialer's earpiece and not on the receiver's side.
So... Is there any way to programmatically send dial tones to an active call? Any way to bring up the dialer of the active call and not the dialer for a new call?
View 4 Replies
View Related
Jul 7, 2010
Short version: Is there a way to prevent the phone from locking while on an active call? Former iPhone user here. With the iphone, there was a sensor that detected when your face was near the phone, so the screen was blank and disabled but the phone was not locked. When you pull your face away, the screen is active again.
On the Evo, it seems it has a similar sensor. However, after a minute it'll actually lock the phone for me while on an active call. So in order to hang up, I have to fumble with the phone to press the top button, then fumble some more to press end. Is there a way to prevent the phone from locking while on an active call, yet allow it to disable the screen when it detects it's being held up to the face?
View 24 Replies
View Related
Jan 8, 2013
When an call is active, the status bar gets green if you don't have the call application open. Is it possible to use NinjaMorph to change this with a .gif or something so it's blinking red?
View 1 Replies
View Related
Jul 12, 2012
I don't even use google play music, but whenver I start my device or restart it, I get annoying pop up errors telling me "unfortunately google play music has stopped working", I have never even started Google play music and it's not in my active applications. If I do open it, it always freezes and crashes. My phone is unrooted so I can't do anything about it, and the errors keep popping up randomly.
View 2 Replies
View Related
Jun 2, 2010
Something I have noticed on my Moto Droid that has happened a few times now. If I am on a call, and get a second call, when I slide to pick up the call the new call just drops while the original call is still active.
View 5 Replies
View Related
May 23, 2010
I have two questions:
1) Before the update, there was a sound that indicated when the call was ended. Anyway to get that back?
2) Has anyone figured out a way to change the end button behavior that was previously controlled by the Spare Parts app? I would like to end button to go home and then go to sleep but Spare Parts can't do it under the new software. Any ideas?
View 8 Replies
View Related
Mar 16, 2010
Im making an app, and i want it to make a sound when a activity is opened , the sound file is in R.raw.sound_file , if someone could do some example code to make my app play a sound that would be great.
View 1 Replies
View Related
Jul 22, 2010
Can we play sound file in phone line (in background)?
View 4 Replies
View Related
Jun 24, 2009
Since i don't want to have double entries, but would like a fast spreading, here's my post:
http://groups.google.com/group/android-beginners/browse_thread/thread...
View 2 Replies
View Related
Aug 28, 2010
I'm trying to use a ListPreference to decide which sound to play on a button click.
I have this at the top:
public String greensound;
Here's my OnClick code:................
I also tried removing the default value here it didnt seem to change anything but, should it be removed?
Here's my Settings.java:
package com.my.app;
CODE:...........
And here's my array's if that will help at all:
CODE:............
Here's a logcat that kinda looked possibly related:
CODE:..........
For those that might ask here's my DDMS > File Explorer > Data > Data > packageName > SharedPreferences This is what was in there:
com.my.app_preferences.xml:
CODE:...................
This all really confuses me more because...It looks like greensound does == gsone so.... I don't understand whats wrong its not even playing the default sound. and yes i've tested all this code without the listpreference code and they work great. I'm not sure what's wrong?
View 1 Replies
View Related
Aug 27, 2010
I have an Android app which needs to play a sound resource on a timed interval, say every 120 seconds. I know how to access the sound resources and play them, however it's time timer part I'm not sure of. What's the best approach?
View 1 Replies
View Related
Aug 26, 2010
In my class I have an OnTouchEvent and when a certain area is clicked, it will play a sound (Not sure if this is the best way to go about this?). However I have been running into bugs using the MediaPlayer. Sound will double play and then eventually sound will stop completely. I am wondering how to efficiently play 5 sounds. The user will be clicking the screen in different areas and different sounds will be playing. I have the attached code below but it only has the first area. Say I add in another area how would I go about changing the media player to play a different sound.
@Override public boolean onTouchEvent(MotionEvent e) {
x = e.getX(); y = e.getY();
if (x >= 232 && x<=287 && y>=117 && y<=157) {
//PLAY SOUND } return true;
View 2 Replies
View Related
Apr 23, 2009
I have this task: Need to play short (0.3-0.4 sec) sounds all the time. When sound is played, it should start again, etc. User can press button to reset sound - it should stop and lunch.
I did many tests. I tried to create 1 MediaPlayer, then do this: MediaPlayer.OnCompletionListener complListener = new MediaPlayer.OnCompletionListener; code...
It works great on emulator and on device if I have eclipse+debugger on. When I disconnect debugger, I have very strange errors - sound can stop at all (till program restart), sound can start "repeating" (play 0.1-0.2 sec, then restart). Can someone please provide me some info about problem?
View 5 Replies
View Related
May 18, 2010
Is there any way to play a sound file under Android browser?
View 1 Replies
View Related
Mar 2, 2010
I would like to play native camera shutter sound clip on camera preview capture. I'm referring to the sound clip played when takePicture() is called. How could I that? Can someone walk me through the steps?
View 3 Replies
View Related
Mar 28, 2012
What sound files is android allowed to play?
View 2 Replies
View Related
Jul 22, 2010
What could be the reason that a mp4 video file without sound doesn't play correctly when using the VideoView class? The video plays just fine in vlc, mplayer and ubuntu media player. It has been created on the device using ffmpeg. It is like 5 seconds long, so nothing especially big. Codec is H263 with AAC-Audio, though the audio signal is just empty. The problem is, that the video plays, but the image doesn't change, or at least doesn't change a lot. It seems more like a still image, though small movements is sometimes visible but not at all what has been encoded. I noticed that the VideoView stops playing but the time continues to step up, so it doesn't stop counting after 5 seconds but just goes on counting.
I'm using the emulator. Can that be related? I see the following messages in logcat:
CODE:......................
View 3 Replies
View Related
Nov 25, 2009
I am trying to play continuous background music using sound pool.
Here is my code:
CODE:...............
when i do playSound() with 1, 2, 3 sound [wav file] with looping false, they play fine. but if i call playSound any of the 4 files with looping true, it does not work. 4th one is an mp3 file which neither plays with looping true nor looping false. can i create another mediaplayer object as a member variable and use it for only background music ?
View 3 Replies
View Related
Apr 25, 2010
In my android application I have the following As far as I am aware, I have followed the steps in the documentation to set it to play a sound from the resources folder, and to flash the lights. However, neither of these happen. It does, however, vibrate, as instructed. Any ideas what I'm doing wrong here? I've looked through the permissions that I can give the app in the AndroidManifest.xml file, but I can't see one for letting it flash the light or make sounds. Code...
View 1 Replies
View Related
Sep 25, 2010
I've looked up and down the SDK for this, but I can't find anything. I'm wondering if there's a way to transmit a sound, such as a WAV or OGG, during a call such that the person on the other end can hear it. (This sound should be heard in addition to, not in place of, the normal voice transmission.) Is there a possibility I may have overlooked?
View 1 Replies
View Related
May 9, 2009
I have a media player that plays a sound. I want to call a function as soon as the sound is complete but i cant figure out how to do it.
View 4 Replies
View Related
Oct 7, 2010
I have had my Evo since launch day. I have recorded some videos for fun and they play back on the phone nicely. But today, I connected the phone to my PC and wanted to play a video. I got video with no sound. I tried several I recorded some at 720fps and some at VGA. Same results. Videos I downloaded from You Tube play fine. Just the ones I recorded on my phone. I have a relatively new HP running Widows 7 and have used Quick Time and Windows Media Player. Neither would play the sound. Anyone have a problem like this?
View 4 Replies
View Related
May 28, 2009
I have my G1 connected to a FM transmitter in my car with my bluetooth headset connected. Music has no problem going out the G1. A call comes in and I connect it. After I disconnect the call, the sound does not go out the adapter on the G1, but out the phone's speaker. Is there any setting to make sure the sound goes out the bottom adapter and not the phone's speaker?
View 2 Replies
View Related
May 20, 2010
Is there any way to get a different sound to play for text messages than emails? It would be kinda nice to know in the middle of the night whether I need to reach for my phone or not. Shouldn't be an unreasonable request, but I can't see any way to do it on the phone.
View 5 Replies
View Related