Questions tagged [dialing]
33 questions
1
vote
3 answers
How to send a dial string from the computer to asterisks to call a phone?
I've been trying to figure out how to send a dial string to the asterisks server which should then handle a call to the phone with that extension. I know there are programs like X-Lite and such but I don't want to manually dial it. I want to pass a…

Zack
- 881
- 1
- 9
- 13
1
vote
0 answers
Making phone call in windows phone 8.1 in a single tap
I'm writing an emergency app and so I need to allow the user to make phone call in a single tap. All the articles I've been reading so far allows phone call in 2 taps. Is there a way to do that in only one tap?

Mervyn
- 67
- 9
1
vote
2 answers
Initiate phone call from app with area code (prefix)
In my code, I have this snippet to make a phone call with dialing prefix (basically, a "call me" button) :
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"telprompt://+0000000000"]];
if(SYSTEM_VERSION_LESS_THAN(@"7.0")) {
…

Camille S.
- 61
- 1
- 6
1
vote
0 answers
Issue in getting notification during calling in android
I am a new developer of android app. I am doing an app which is dialing a number after getting that number through push notification. This was successfully done, however when I am sending another push notification to cancel the dialing call, that…
user2716802
1
vote
1 answer
Starting the application from a BroadCastReceiver (NEW_OUTGOING_CALL doesn't always work)
Well, I've written an application that starts by dialing an specific number, I have used NEW_OUTGOING_CALL(a broad cast receiver) to catch the dial event.
So far the broad cast receiver on my AndroidManifest.xml is like the following code:

Hossein Shahdoost
- 1,692
- 18
- 32
1
vote
1 answer
Java program to auto dial a calling card phone number, issues with entering card number
I wrote a Java program to mimic the sounds to dial phone numbers, it works fine except when it comes to phone cards, it needs to dial a local number first (no problem, it successfully connects to a local number), then it needs to enter the card…

Frank
- 30,590
- 58
- 161
- 244
1
vote
2 answers
Call Android Activity
I have an application that performs a phone call, but when I send dial directly, the application is in the background and displays the screen of the android default phone call, it must not happen, because when the phone call is made, I need to…

Renan Barbosa
- 1,046
- 3
- 11
- 31
1
vote
2 answers
iPhone 4 problems dialing from inside app
There is an iOS 5.0+ app, released in App Store, which displays employees profiles with their phone numbers. The users of the app can tap on the phone number and the number will be dialed on their iPhones.
The problem is that some users with iPhone…

Blackbeard
- 652
- 2
- 8
- 22
1
vote
1 answer
How to display contact name while dialing the call in android programmatically
I can't display the contact name while dialing a call in Android.
Here is my code:
String callTo = "9999900000";
String callername="xxx";
Intent callIntent = new Intent(Intent.ACTION_CALL);
callIntent.setData(Uri.parse("tel:"+…

AndroidRaji
- 907
- 14
- 26
0
votes
1 answer
c# asternet cancel outgoing-call
I'm using Asternet for my manager-program so employees can call a customer with just a click.
But I'm trying to find how to cancel or disconnect a call to a customer. When I click on the call-button, the extension calls. When I pick up the phone, it…

Paul Albers
- 121
- 1
- 8
0
votes
0 answers
I have a problem with OpenTok and Nexmo API
I have a problem with OpenTok and Nexmo API. I am trying to connect to Nexmo phone conference using OpenTok. In order to connect to correct conference I need to pass the conference session id somehow. And here is where problem begins. I am tryting…
0
votes
1 answer
Fragment webView for Button (to call or dial a number) [Android Studio]
I have successfully added a WebView to a fragment, to load a website. However, some elements on the website, such as a button, link to a tel= scheme, resulting in an err_unknown_url_scheme error when pressed. How can I support this?
This is my code:…

A. Misli
- 3
- 3
0
votes
1 answer
Dialing a phone number through Bluetooth
I want to write a program under Win/Mac/*nix, that takes a phone number and dials it on my mobile through Bluetooth. I don't know much about BT. Is that possible? The mobile is mine and I WANT it to dial. How would I go about it?

pitr
- 715
- 1
- 8
- 25
0
votes
1 answer
Is it possible to dial two or more numbers in same time - classic SIM based calls - Dual SIM devices
Is it possible to dial two numbers in same time ?
Maybe android.telecom.Conference
can help me , but there is no lot of examples for this class usage.
android.telecom.Conference
Doc say :
Represents a conference call which can contain any…

Nikola Lukic
- 4,001
- 6
- 44
- 75
0
votes
2 answers
Dialing a number
I read some reference about how to make a call programmatically on the iPhone, so I put this in my code :
UIApplication *app = [UIApplication sharedApplication];
NSString *urlString = [NSString stringWithFormat:@"tel:0225225657"];
NSURL *url =…

Imam Arief W
- 557
- 2
- 6
- 18