General :: How To Detect Incoming Call Is Forwarded Call

Nov 26, 2012

i need a way to understand that the incoming call is a forwarded call so i can deny it using tasker or another application.If possible i want to auto decline the call using tasker + secure settings or any other plugin

General :: How to detect incoming call is forwarded call


How To Detect Incoming Call

May 25, 2011

I'm working on an application that does something during a call. So I understand I need to use a service. But how does my application detect that a call is incoming or the call is answered or whatever before I launch the service?

View 3 Replies View Related

Android :: Incoming Call GPS - Detect Latitude / Longitude

Aug 20, 2010

Is possible in android, detect the latitude and longitude from Incoming Call?

View 12 Replies View Related

General :: Call Forwarding - Displaying ID Of Forwarded Phone

Mar 25, 2012

Here is my dilemma:

I have 2 lines, 1 smartphone and 1 plain phone. Let's put up a scenario.

Smartphone = line a
Plain phone = line b

I want to forward all calls from line b to line a but instead of the caller id being of the caller, I want it to display the id of the forwarded phone.

DROID BIONIC (rooted)

View 4 Replies View Related

Android :: Use Intent Make Outgoing Call - How To Detect The Call State

Jan 19, 2009

I can use this code make outgoing call.

Intent dial = new Intent(Intent.ACTION_CALL); dial.setData(Uri.parse("tel:5556") );

context.startActivity(dial);

But how to detect call pick up the call or refuses to answer?

I tried PhoneStateListener but not working.

View 2 Replies View Related

HTC Hero :: Incoming Call Whilst On A Call - Doesn't Ring

Aug 2, 2010

When I'm on a call and a 2nd call comes in, my phone doesn't ring or anything. Is there anyway to change this so that I know when I have a call waiting without having to look at the screen (which is usually pressed up against my ear)?

View 1 Replies View Related

Android :: Conference Call / Adding Incoming Call

Sep 29, 2009

Is it possible to add an incoming call with current call to make it as a conference call programmatically?

View 2 Replies View Related

Android :: How To Disconnect To Call (incoming Call)?

Jan 25, 2010

how to disconnect the call(i.e incoming call) programmatically ?

View 3 Replies View Related

General :: Screen Flash On Incoming Call?

Aug 3, 2012

Is it possible to make screen flash when someone is calling?Like iPhone has camera flashing when someone is calling. My phone doesn't have camera flash so I'm looking for a way to make the screen blink.

View 2 Replies View Related

General :: Hide Incoming Call Number

Apr 2, 2014

I was looking for app, widget, setting or anything else to show me JUST name of contact for incoming calls on android 4.3 (except full screen caller that i hated).

View 1 Replies View Related

General :: Block All Incoming Call Except SMS And Data

Apr 17, 2014

I want to know if there is an app or any other way to block all incoming calls on my HTC Desire V phone. (Rooted and stock ROM)

My requirement is to block only "Incoming" calls from a list of pre-selected numbers but I would like to allow everything other then incoming calls.

I am using my phone's default way to reject all calls, but any time someone calls they hear a small ring and then operator message saying

"The Number You Have Called Is Busy...", So the caller understands that I am rejecting the call and expects a call back.

If the message after rejecting a call is like "Switch Off" or something else I am fine.

Required "Incoming Call Barring" , because I spoke with my operator regarding incoming calls barring password but I was told that it is phone feature so I needed to contact handset manufacturer for this and I got the same answer from HTC that it is a network feature so I need to contact service provider.

View 4 Replies View Related

General :: HTC Explorer Incoming Call Screen Font

Aug 12, 2012

I have got an explorer for my dad but he says that the font of the caller ID ( phone number ) is too small for him to read at the incoming call screen..is there any way to make the font bigger or using any app or etc ???

View 2 Replies View Related

General :: Incoming Call Notification Show In Status Bar?

Aug 21, 2013

Is there an application that will force your incoming calls to only show in the status bar instead of interrupting your current session? I have seen a video showing what I'm looking for but it was an iPhone app for unlocked devices.

View 1 Replies View Related

General :: Intercept Call And Add Prefix (Incoming / Outgoing Calls)

Feb 6, 2012

How to intercept incoming calls by adding a prefix like 19299 on incoming, and * on outgoing.

I have built and compiled an .apk file witch force closes for no apparent reason on launch. When compiled it compiles without any errors.

Is it even possible to monitor incoming calls on public API level? Or is that an API that is closed off? if the API is available, is it then possiblo to add said prefix both on incoming and outgoing calls?

View 1 Replies View Related

HTC EVO 4G :: Incoming Call When On A Call

Aug 3, 2010

if I am on a call and a new call beeps in, how do I hang up on the existing call and answer the new call?If I select "answer" on the incoming call, it puts my existing call on hold.I don't want to put the existing call on hold, I want to stop that call to answer the new one.

View 2 Replies View Related

Android :: Google Voice Call Quality -- How A Call Routed If Have GV Make The Call

Feb 11, 2010

I use Google Voice (love it) primarily because of it's visual voicemail on my Droid. I do have a Google Voice number, and I'm trying to decide whether to set the Droid app to "make calls using Google Voice" or not.

I have no problem with giving out a different number, and my placed calls seeing the GV number in caller ID.

My question is, does this affect how the call is actually connected, from a quality standpoint? I tired a call both ways, and the sound quality seemed a little bit different. But then, I am an obsessive compulsive weirdo.

Is there any difference in call quality or routing between making a native Verizon call and a Google Voice call on Droid? (Like, does Google voice actual use 3G to connect to Google server over the internetz, then place the phone call?)

View 3 Replies View Related

HTC EVO 4G : No Incoming Call When Using App / Way To Fix

Sep 4, 2010

I have damage control rom on my evo i just notice today when i am running an app or using the internet my incoming call go to voice mail if you were to call me when i am on a app the incoming call don't come through my phone any idea what might be the problem?

View 1 Replies View Related

Android :: How Can App Detect A Dropped Call?

Jun 30, 2010

I am writing an app that is meant to be run during a call. After the user makes a call, and starts my app, I want my app to be able to know if the call is dropped from bad connection.

View 3 Replies View Related

Android :: Detect A Received Outgoing Call

Oct 14, 2010

I havn´t been able to find out, how to detect the event (if there are any), when an outgoing call is answered - does anybody know how to do this?

View 3 Replies View Related

Android :: Detect If Microphone Is Mute During Call

Apr 2, 2009

I would like to detect if microphone in the device or in a headset is mute during a call. Currently I've taken the following approach (unfortunately - it does not work): 1) register PhoneStateListener to detect when a call is started/ finished 2) when call is started then I start a thread that periodically calls audioManager.isMicrophoneMute() method to discover a microphone status. (audioManager is obtained by calling getSystemService (AUDIO_SERVICE) ) 3) when call is finished I stop a thread started in bullet 2

Unfortunately audioManager.isMicrophoneMute() always returns 'true', does not matter if I select or deselect the 'Mute' option in the menu during a call. Does anybody know if it is possible to detect the state of a microphone during a call?

View 3 Replies View Related

Android :: How Can I Detect When Outgoing Call Has Been Accepted?

Oct 20, 2009

I have seen, using search, that this question has been asked already in this forum, without answer. To ask again: How can I detect when outgoing call has been accepted ?I can detect when outgoing call has been started using BroadcastReceiver. I can detect when call has ended using PhoneStatusListener. But there is nothing more except this two notifications.Internal phone application detects this event, my HTC magic (running standard cupcake) vibrates shortly when other party accepts call.So is it possible to detect this event in 'cupcake' or 'donut'. If not where can I post feature request to android OS developers to include this notification in next API revision.

View 2 Replies View Related

Android :: Detect If An Outgoing Call Has Been Answered

Feb 12, 2010

Once ACTION_NEW_OUTGOING_CALL has been broadcasted, I need to capture the following event of the other party answer. Could you advice on how to achieve that please? I know it is possible as the android dialer app changes the green android icon to the person's photo excatly when they pick up. I've had a look at the source of the app on Android handling the outgoing calls.

View 1 Replies View Related

Android : Way To Detect A Call State From A Service?

Oct 22, 2009

i have a service (that extends Service). public class MyService extends Service ..

View 2 Replies View Related

HTC Wildfire :: Ring Only Once For Incoming Call?

Oct 14, 2010

I would set my HTC Wildfire to ring only once (or twice) for incoming calls. Even old Nokia phone have advance settings to do this but not Android phone. Is there a free app allowing to do this kind of advanced settings?

View 1 Replies View Related

HTC Incredible :: Merge Incoming Call

Sep 20, 2010

I'm using a Droid Incredible with the stock OTA froyo pushed by verizon. I did a search and some say that if you're on a phone call, and another call comes in, you are not able to merge that second call so all 3 parties can be on the line, and that it is a limitation of CDMA. Others say that it is carrier specific, and that it has been confirmed not to work with the Evo on sprint, but nothing specific to verizon. Anyone have any info on this? I have been searching, but haven't found a clear answer.

On a side note, since I update to froyo, I've had an issue with call waiting. It seems that when I'm on a phone call, and I receive another call from a person that is on my contacts list and stored in the phone, it will not pull up the persons caller ID info (name, picture etc), it will only display the phone number. It always worked fine before, but this started happening since the update.

View 2 Replies View Related

Android :: Way To Block Incoming Call?

Sep 6, 2009

I know there are some posts from the group have talked about this ( like https://groups.google.com/group/android-developers/browse_thread/there... and https://groups.google.com/group/android-beginners/browse_thread/threa...), but I can not find exactly the official answer of this issue. in android market, there are some apps which can set up a black list and block the incoming call, see http://www.cyrket.com/search?q=block+call for details. is there something like backdoor or unkown api for blocking incoming call.

View 5 Replies View Related

Android :: How To Get Notified For Incoming Call Or SMS?

Oct 16, 2010

I'd like to implement a feature that monitors incoming calls and SMS and blocks them if necessary. But I don't know how to capture such events, could someone tell me how to do that?

View 2 Replies View Related

Android :: Put App In Front Just After Incoming Call?

Jul 22, 2010

I am trying to make my application in front just after incoming call.i mean when user cut the phone my application should come in front can it be possible ?

View 3 Replies View Related

Android :: How Can I Detect When Outgoing Call Has Been Accepted (answered)?

Oct 4, 2009

I am not able to detect when outgoing call has been answered, I have registered BroadcastReceiver for PHONE_STATE broadcast, but onReceive() gets called only when number is dialed and when call has ended.If it is not possible with current API (1.5 or 1.6) please enlighten me ?

View 2 Replies View Related

HTC Incredible :: Not Ring When Receive Incoming Call

May 5, 2010

My phone will sometimes not ring at all when I receive an incoming call. It will be waiting for me to pickup, but nothing will be coming out of the speakers. Also, sometimes when someone calls it rings and rings on their end and go to my voice mail, but my phone will not even register that they called. Oh, and it randomly revolted once or twice just sitting there. I am probably going to exchange my phone, but I wanted to see if that is the best course of action.

View 2 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved