Questions tagged [phone-call]

Phone calls are a method of transferring real-time two-way voice information over large distances.

Since Meucci (or Bell) invented the telephone, distances between people have been reduced to a mere physical meaning.
Nowadays you can share your ideas or feelings or whatever in a matter of seconds, through a simple phone call.

1220 questions
24
votes
7 answers

How to ask permission to make phone call from Android from Android version Marshmallow onwards?

I am trying to make a phone call from Android, and I've set run time permissions as well. And it asks whether to allow making phone calls. But when I press allow, the app crashes: This is how I implemented it: private static final int…
OBX
  • 6,044
  • 7
  • 33
  • 77
24
votes
3 answers

Android Intent call number

I have my phone number at TextView and want to open "Intent-picker" to choose application that I want to call with(Skype, Viber...) or just dial to call it. Intent callIntent = new Intent(Intent.ACTION_CALL); calls instantly so it doesn't help me.
Kyryl Zotov
  • 1,788
  • 5
  • 24
  • 44
23
votes
3 answers

Call from second sim

I have a dual sim android phone. I am using this code to make a call: private void callBack(String phone, Context context) { Intent callIntent = new Intent(Intent.ACTION_CALL) .setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); …
Seshu Vinay
  • 13,560
  • 9
  • 60
  • 109
22
votes
1 answer

No activity found to handle intent action.dial

I'm trying to make my app call a number from an EditText, but I get: android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.DIAL dat=Ring Tel nr. 123456789 } I've searched a while for an answer,…
21
votes
3 answers

How to make incoming call in Genymotion emulator for Android?

How can I make an incoming call in Genymotion emulator for Android? I am using Genymotion emulator to run and test my application. In the native emulator DDMS, we can make a fake call. Can this be done using the Genymotion emulator?
MilapTank
  • 9,988
  • 7
  • 38
  • 53
21
votes
9 answers

How to open number dialer pad programmatically in android?

I want to display Number Dial Keypad (Phone Call) Programmatically on button click in android. Code is available for direct number dialing but I only need to show the dial keypad when I click the Button.
Addon_Android
  • 271
  • 1
  • 2
  • 9
20
votes
2 answers

Calling an app from another app

In this app I'm developing I need to load/call another app that is already installed on the phone. It's an application for my own personal use only, so no need to check if the other app is installed - I know it is. I've googled this problem for…
gosr
  • 4,593
  • 9
  • 46
  • 82
20
votes
2 answers

How to programmatically answer a call

I know this has been asked before, but at this time the answer of the post is not true. Vringo and other apps does answer the phone by pressing a button on their app, so there must be a way to do it. Anyone has a suggestion?
Gonzalo Perr
  • 255
  • 1
  • 3
  • 5
20
votes
1 answer

How to know callee is answered the call (What is the phone state when he lift the call)

I am trying to know how to alert when the callee lifts the call. I have used PhoneStateListener along with BroadcastReceiver. Generally it has three states CALL_STATE_IDLE , CALL_STATE_OFFHOOK, CALL_STATE_RINGING. CALL_STATE_OFFHOOK state was…
Ramakrishna
  • 4,066
  • 16
  • 48
  • 72
18
votes
10 answers

How to make an incoming call on my mobile trigger an action on my pc

I have a specific scenario in mind, but I will ask this generally: Is there a way to make my mobile phone trigger an action on my computer? I am thinking that with a smart phone it must be possible to link the phone and the personal computer with…
Bjørn Otto Vasbotten
  • 1,673
  • 1
  • 23
  • 32
17
votes
1 answer

Android check has telephone call active

How to check if a telephone call is currently active from a non-telephone app? What API do I need to detect this?
linquize
  • 19,828
  • 10
  • 59
  • 83
16
votes
1 answer

WP 8.1 Runtime code to make phone call, send SMS & send Email (not the Silverlight 8.1)

I'm writing an app which will make a phone call, send sms or email just like the People app in wp 8.1 . So far I've found a link form msdn which said "Applies to: Windows Phone 8 and Windows Phone Silverlight 8.1". So here the code:from this…
truongnm
  • 2,311
  • 2
  • 31
  • 48
16
votes
7 answers

Is it possible to play music during calls so that the partner can hear it ? Android

I'm trying to make and app like Call Cheater(Originally developed for Symbian OS) Is it possible to play a music during a phone conversation where receiver and caller should hear the same sound or music? If yes how can I implement this?
Sai
  • 15,188
  • 20
  • 81
  • 121
16
votes
1 answer

Show the information in the middle of the call

I want to show some information in the middle of a call in that screen like weather info, or facebook updates like that, can anyone help me. See the screenshot below of the update that I want.
Pinki
  • 21,723
  • 16
  • 55
  • 88
15
votes
5 answers

How to block a mobile number call and message receiving in android application development?

I would like to implement an application for block a mobile number for receiving or sending calls and messages. In my application I am entering mobile number at EditText box then I am clicking a button for block the mobile number which has entered…
prasad.gai
  • 2,977
  • 10
  • 58
  • 93
1 2
3
81 82