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
37
votes
9 answers

Disable Proximity Sensor during call

I dropped my phone and looks like my proximity sensor no longer works reliably. It returns Near all the time. The problem is, the display turns off during call and I wont be able to use the number pad to enter pin or conference another call, or even…
12
votes
1 answer

How to make a dialer based on Google's Android latest dialer app (or of a Vanilla based ROM such as Lineage OS)?

Background Starting from Android M, it's possible to make a replacement to the dialer app of the OS, meaning that taking phone calls could show your own customized UI. This is done by extending InCallService class, and having an Activity that…
android developer
  • 114,585
  • 152
  • 739
  • 1,270
8
votes
4 answers

Android. Launch app from Dialer

This is what I have so far but nothing happens when I input this combination in dialer public class DialReceiver extends BroadcastReceiver { @Override public void onReceive(Context context, final Intent intent) { if…
pedja
  • 3,285
  • 5
  • 36
  • 48
7
votes
3 answers

Android: How to make a default dialer app?

Today I got a rejection from Google for my app Facetocall Your app does not appear to prompt the user to be a default handler prior to requesting related permissions as required by the policy. Please make necessary changes in order to comply…
Ilya Gazman
  • 31,250
  • 24
  • 137
  • 216
6
votes
5 answers

How does "Phone" app show information of contacts that are not on the address book?

Background In the "Phone" app of Google, there is an option "Caller ID & spam" : So, if you get a call from someone or some organization that isn't on the address book, yet it is identified somehow, you get a name for it, as such (called…
android developer
  • 114,585
  • 152
  • 739
  • 1,270
6
votes
4 answers

Android Intent ACTION_CALL not making a phone call

In my Android application I would like to make a phone call automatically when user click the button. I have used the below set of code to achieve this functionality Intent intent = new Intent(Intent.ACTION_CALL); …
Jamal
  • 976
  • 2
  • 14
  • 39
6
votes
1 answer

Is there any way to send a phone number from Desktop browser straight away to dialer?

Currently, I have to dial the number manually, sometimes it results in typo error, so I was wondering, if I can highlight the number in my chrome and send the number straight to my android dialer it would be wonderful.
6
votes
0 answers

Android: Directory data provider for PhoneLookup

I'm writing a custom Android contacts directory, I have implemented the ContactsContract.Directory provider and the search from within the phone app works fine. The problem I am facing now is that when I have an incoming/outgoing call the Android…
mangefort
  • 353
  • 1
  • 2
  • 9
5
votes
2 answers

Is it possible to programmatically dial numbers during a phone call?

I know it is possible in Android to make a dialer, but is it possible to make the dialer "press 1" during a phone call?(like when you call support and you have to press all sort of numbers just to talk to a person) Is there code of how to do it?
max4ever
  • 11,909
  • 13
  • 77
  • 115
4
votes
1 answer

Android custom dialer app, connections are not activated

I am trying to implement a basic dialer app, which should also handle incoming calls. The scenario is that the user sets the app as default dialer, and from then, every incoming and outgoing call should arrive in the app's ConnectionService…
apropovics
  • 41
  • 4
4
votes
4 answers

TelecomManager.ACTION_CHANGE_DEFAULT_DIALER returns RESULT_CANCELED on huawei P8 Lite

I want to change Android default dialer and want to make my own customized dialer. For this purpose I have choose this GIthub repo as start up project. This works well on all other phone and stops working on huawei p8 lite. The default pop up…
4
votes
3 answers

Request to change default dialer isn't showing the system dialog on some devices

Our app needs to become the default dialer app (also known as: "default phone handler", "default calling app") so it'll be able to make calls under Android's new permissions policy. We use the following intent to show a system dialog to ask the user…
marmor
  • 27,641
  • 11
  • 107
  • 150
4
votes
1 answer

Outgoing call not ringing when using custom ConnectionService and PhoneAccount

I'm building an app that hooks on the stock Dialer (Marshmallow API). My goal is to get incoming and place outgoing calls, while getting a handle on the Connection objects to manipulate the Connection's methods. I have registered PhoneAccount with…
rayiskon
  • 41
  • 3
4
votes
0 answers

How to animate between CardView to flat-style EditText, as shown on the Dialer app on Lollipop?

On Lollipop, you can see on the dialer a very smooth transition between a CardView and a full-width EditText (or it's still a cardView), from this: to this: and back. I've tried to play with the cardView and its properties, but failed to achieve…
android developer
  • 114,585
  • 152
  • 739
  • 1,270
4
votes
3 answers

Creating custom android dialer

I am working on the new phone app for Android. Obviously it needs to make and receive phone calls. My first problem is how to place a phone call from the app without invoking System default dialer. Making calls using Intent is very easy. However…
svager
  • 769
  • 5
  • 13
  • 32
1
2 3 4 5 6 7