Questions tagged [android-dialer]

Android dialer is a dialer app created in Android that tries to help manage contacts and to make calls to them. Use this tag for all questions related to this dialer app

Android dialer is a dialer app created in Android that tries to help manage contacts and to make calls to them. Use this tag for all questions related to this dialer app

97 questions
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
1 answer

Can I make direct calls from my app (Flutter Android & IOS)?

Actually, I'm trying to create a dialer app. From which you can call directly by typing mobile number. I know of the "url_launcher Flutter package" but it is not suitable for my application. I want like the default dialer of mobile, so that you can…
3
votes
1 answer

dynamic href call tag ionic 3 app

I am trying to add a href call action to my Ionic 3 app. I have the phone number stored in a binding {{item.phone}} I need to add this to an href tag in order to open the phones native app. I am not sure how to bind it to the href tag
skydev
  • 1,867
  • 9
  • 37
  • 71
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
2
votes
0 answers

Android custom dialer - Missing implementation for missed calls?

I've created a custom dialer, based on following example: https://github.com/Abror96/CustomPhoneDialer. It works perfectly, and I'm able to put it as my default dialer. Everything works smoothly, incoming/outgoing calls. Untill I have missed calls…
2
votes
0 answers

Intent(TelecomManager.ACTION_CHANGE_DEFAULT_DIALER) don't show dialog to set default dialer app

I want my app to become default dialer, but when I'm trying to create dialog for user to set default app, my app is rejecting it itself (it's showing toast "User declined request to become default dialer) Testing on Samsung Galaxy S10+ My…
2
votes
0 answers

Default Phone App Intent Action DIAL not opening activity

I am developing a default Phone App for android like : Having permissions listed in manifest and requested runtime too :
Rushikant Pawar
  • 428
  • 1
  • 5
  • 14
2
votes
0 answers

Dial digits (1 or 2) when call active/answered from custom Default Dialer in Android programmatically?

Im making a Default Dialer App in Android replacing built-in phone dialer. Everything is working fine, call is attending as well as rejecting. But when the call attends: When suppose operator asks to press "1" for this and "2" for this. How can I…
Ali Jzz
  • 33
  • 5
2
votes
1 answer

android handover incoming call to other calling app

I have made my app default calling app but for incoming call i don't want to use my UI i want to handover that incoming call to system default app actually i am rejecting specific an incoming call from my default app but when other call come i want…
Mateen Chaudhry
  • 631
  • 12
  • 32
2
votes
2 answers

Android get dialer package name

I need to get package name of an app which post notification about a missed call. As far as I understand it makes dialer app of a device. Can I get package name of dialer app on the device, I need it from API 19?
Ruslan Leshchenko
  • 4,043
  • 4
  • 24
  • 36
2
votes
1 answer

How to use the dialer while still viewing application information?

Situation: Users of my application need to call their contacts and still being able to view special contact information. Initiating a call is easy with the following code: private void performDial(String numberString) { if (…
Jelle
  • 67
  • 1
  • 5
2
votes
1 answer

How to open Dialer Activity from a webviewclient with clicked number?

I am implementing a web view in my application. now when a user clicks on a phone number it shows net::ERR_UNKNOWN_URL_SCHEME. But if i use chrome. it brings the dialer application with that phonenumber. I need the exact same thing in my…
Shobi
  • 10,374
  • 6
  • 46
  • 82
2
votes
0 answers

Android: DTMF Conference call

I am working a conference app, in this application I need to call a conference number via Intent Action. The phone number is as "Phone No,Conference Pin#". The main problem I am facing is after call get connected, to join conference it take 20 sec.…
Sandip Jadhav
  • 7,377
  • 8
  • 44
  • 76
2
votes
3 answers

Call receiver does not receive extras from phone intent

I have an activity that makes a call: public void call(String number) { Intent intent = new Intent("android.intent.action.CALL"); intent.setData(Uri.parse("tel:" + number)); intent.putExtra("MY_EXTRA", "Hello"); …
1
vote
1 answer

CallLog.Calls.CACHED_PHOTO_URI always return empty

I have facing very critical issue. I developing call log related apps but when i getting call log from content provider i am not able to find CallLog.Calls.CACHED_PHOTO_URI. It's always returning empty. I am using VIVO 1917( Funtouch OS_10) public…