Questions tagged [incoming-call]

Questions on scenarios related to incoming phone calls

Questions on scenarios related to incoming phone calls, like incoming call location, incoming call details, incoming call recording, etc.

140 questions
4
votes
2 answers

Display video button in CallKit incoming call screen when call is video

I am using the following code to receive video calls. My application has audio and video call functionality and I am using linphone + CallKit. - (void)config { CXProviderConfiguration *config = [[CXProviderConfiguration alloc] …
iosdev1111
  • 1,048
  • 1
  • 13
  • 32
4
votes
0 answers

Intercepting incoming calls on iPhone

I would like to write software for my iPhone that intercepts incoming calls, and requires that the caller press "1" to proceed with the call. (This is for fighting telemarketers.) I would prefer to write the software myself, and not install an app…
ConvexMartian
  • 331
  • 2
  • 14
4
votes
1 answer

How to detect a call Drop in android

I'm writing an app that runs on background during a telephone conversation and logs the coordinates to a file after the conversation has end,I know Android telephony API can detect a call manual disconnect by user*(correct me,if I'm wrong)*, But…
3
votes
2 answers

How to detect and manage incoming call (Android)?

I want to create an application that can detect incoming calls and start my custom activity after a certain number of beeps (rings), I mean after 2 or 3 or 5 beeps (rings) my activity is triggered. How can I do it? Thanks
Mr.James
  • 376
  • 2
  • 8
  • 25
3
votes
0 answers

How to run a built-in call app when a device gets incoming call in onCallAdded(InCallService) function?

When a phone is ringing ( by an incoming call) If the phone number is a specific number I want to show my custom UI. If It is not, I want to pass it to the (built-in) system call app(Or any other call app is okay). I should use 'InCallService' and…
성이름
  • 31
  • 1
  • 3
3
votes
0 answers

How to implement InCallService and show my Activity during Ingoing and Outgoing calls

Does anyone has an experience how to implement InCallService to show my custom Activity during a call instead of default dialer in Android 8.0? I know that the Google added a permission in API 26: ANSWER_PHONE_CALLS. I saw the default Dialer in the…
willford
  • 39
  • 2
  • 9
3
votes
0 answers

Android incoming or outgoing call phone number is null

I want to retrieve the incoming/outgoing call's phone number, but sometimes the delivered phone number is null. I'm unable to reproduce it, but my clients are reporting that sometimes it's not working. I can confirm this because I have logs about…
3
votes
1 answer

Answer call using asterix (AMI/AGI or anything else)

I am using asterisk to communicate with the PBX and want to answer the incoming call BUT, what I need is: Suppose we are 101 and call 102. We can see/monitor the incoming call without problem. On the receiver side (102), the user sees the…
benchpresser
  • 2,171
  • 2
  • 23
  • 41
3
votes
1 answer

How to mute a phone ringing on incoming call

How can I mute Android phone ringing at an incoming call programmatically? (Like doing this by pressing power button at incoming call)? I know about setStreamMute and adjustStreamVolume, but I think there is a better way.
3
votes
1 answer

Floating window on incoming call screen

I want show some info when somebody call me. I have service. This service has registred broadcastreceiver. This receiver listen for android.telephony.TelephonyManager.ACTION_PHONE_STATE_CHANGED. I'm able to show toast when my phone is unlocked, but…
spajdo
  • 901
  • 9
  • 20
3
votes
0 answers

How to detect if incoming call is full-screen or popup

I have issue, where I have PhoneStateListener what basically listens if there is phonecall. However I need to understand, if the incoming phonecall is going to be shown as full-screen up or popup (when u are using mobile while call comes in). Is it…
Elven
  • 310
  • 1
  • 3
  • 11
2
votes
1 answer

Where does the Android CallScreeningService place if I'm using BroadcastReceiver?

I am using the Broadcast receiver to detect the incoming call and then call my custom incoming Screen as follow: public class CallReceiver extends BroadcastReceiver { @Override public void onReceive(Context context, Intent intent) { …
2
votes
1 answer

Twilio | How can I modify call after X duration of dialed?

Suppose a customer is calling and at the application side staff members(softphone) are busy with some other stuff. I want to play call later text when nobody will answer after X seconds. I've used a timeout attribute of a Dial verb. But that…
Mayank Majithia
  • 1,916
  • 16
  • 21
2
votes
0 answers

Get Incoming call number in Android not working for Android Pie(9.0)

This is the code I used to do my work, but unfortunately It doesn't work for my device with Android Pie(9.0). But It works for device with Android Naugat(7.0). I already enabled the phone permission for the app using device App Settings. Can you…
shayanmalinda
  • 1,925
  • 3
  • 12
  • 23
2
votes
0 answers

Issue with ConnectionService PhoneAccount registering in android

I am trying to use Twilio for video calling application, one end is web and another end is android. Using Firebase to trigger push notification from web to android. I need to convert the push notification as Incoming call screen in android…
1
2
3
9 10