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
0
votes
1 answer

How to intent dialer call from service?

I am using this this dialer example as basement. I have added some service(foreground) from where i should dial a call. How can i make it? I have this in Service(onStartCommand) if (checkSelfPermission(this, CALL_PHONE) == PERMISSION_GRANTED)…
Cacarilo
  • 33
  • 8
0
votes
2 answers

Getting RESULT_CANCELED for Dialer Intent

I am trying to get result for dialer Intent using startActivityForResult() Below is my code for Dialer Intent. button.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { Intent…
0
votes
1 answer

Android. Is there an intent to go to the default Apps page?

I have this code to set my app as the default dialer: val telecomManager = getSystemService(TELECOM_SERVICE) as TelecomManager val isAlreadyDefaultDialer = packageName == telecomManager.defaultDialerPackage if…
0
votes
1 answer

Is it possible to update emergency contact programatically?

I am able to make a call using, Intent intent = new Intent(Intent.ACTION_CALL); intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); intent.setData(Uri.parse("tel:" + "911")); startActivity(intent); But I am required to update emergency contact in…
Sazzad Hissain Khan
  • 37,929
  • 33
  • 189
  • 256
0
votes
0 answers

Bring the call screen to front programmatically from separate app in Android

I am developing a dialer application in Android which needs to set as default replacing the system app. I can manage incoming and outgoing calls. But in the case of incoming calls, the call screen does not appear in front. I want to bring the call…
0
votes
1 answer

Working of missed call based phone number verification

In recent times, we are seeing a phone number is verified using a missed call given on clients mobile number and it shows phone number is verified. How does this process happens?
0
votes
1 answer

Dialing Number with Extension is Not Working in some device like Nexus 4

I am trying to dial the number with extension: Uri number = Uri.parse("tel:0008001009009,1"); Intent callIntent = new Intent(Intent.ACTION_CALL,number); startActivity(callIntent); This is working in some devices, but for some devices like Nexus 4…
Avinash Mishra
  • 281
  • 3
  • 21
0
votes
0 answers

get default dial pad, By avoiding chooser

I know to make direct call without chooser programatically like below String numberToBeCalled = "1234567890"; Intent intent = new Intent(Intent.ACTION_CALL, Uri.parse(numberToBeCalled)); intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); if…
Guruprasad
  • 931
  • 11
  • 16
0
votes
1 answer

AOSP dialer app crash on nexus 6p

I have been building aosp for angler (nexus 6p) device. After flashing the images, everything works find except dialer app. I am on "8.0.0_r17" tag, anyone else has same issue or any pointer for workaround on this ? --------- beginning of…
SatishP
  • 21
  • 2
0
votes
0 answers

How to make EditText behave like Dialer in Android Phones, Disabling softinput in fragment?

I am actually using my own set of number buttons in a fragment to add numbers in edittext, it works fine. problem is when I touch on edittext to paste or or remove a character at a certain position, it brings up the softinput I tried couple of…
0
votes
1 answer

How to prepare a dial-like GridLayout?

Background I'm trying to create a dial-like GridLayout, similar to this sketch : The problem I'm failing to create it correctly. The idea I had was that all cells would take the same space, spreading the size evenly, except for the backspace…
android developer
  • 114,585
  • 152
  • 739
  • 1,270
0
votes
2 answers

I want to call on mobile number but don't want user to show the dial number,to hide the privacy of dialled number

I am developing an app for a cab and have to implement the call facility.I am done with this calling feature but it is showing the dialed number in dialer, but I am in need to hide the dial number from the dialer.we are doing this just to make…
Santosh Yadav
  • 338
  • 2
  • 4
  • 15
0
votes
2 answers

Opening dialer app and then placing phone number

I already know how to open a dialer app on Android using an Intent but my problem is how the number is displayed. An example of a phone number format I would like to display on the dialer app is (00) 000 0000. But when it is displayed in the dialer…
0
votes
0 answers

How can I create Outgoing call handling dialer in android?

I want to create Phone dialer in android . Purpose is handling out going call event . I have found many dialer in android but no one is working like this.For dialing purpose they are sending event to native android dialer . I want to make call…
Nilesh
  • 237
  • 1
  • 3
  • 13
0
votes
1 answer

Register Activity for specific kind of Data android

So, whenever any number is clicked in any application, default Dialer is opened with that number pre-filled. How can i register my activity for similar thing?. Where any click on number, will also list out my app and on selecting I get data of…
Aps
  • 95
  • 1
  • 1
  • 5