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

Android SDK Sending numbers to Running Phone call

I want to write an App which is able to Call a specified Number and after the Call is initiated, send some Numbers. It is quite easy to call a Number, but it seems that there is no way to send numbers after like 6 seconds. How can I achieve this?…
Dropye
  • 214
  • 3
  • 18
0
votes
1 answer

Android app accessing locked down phone dialler

My company has written an android driver app (for making deliveries) from which the driver can select a 'call' button to dial the customer they are delivering to. I know how to change the intent to auto dial the number instead of the user having to…
antonjj
  • 3
  • 2
0
votes
0 answers

Does google's libphonenumber library get updated every time there is an update in a country as soon as possible?

I am doing a project that I want to use libphonenumber library. I am thinking of a case study here: Assuming I have a country short name GH (which is Ghana anyway) and the country code is +233. Lets say my mobile phone number operator prefix is 24…
Young Emil
  • 2,220
  • 2
  • 26
  • 37
0
votes
2 answers

Make phone Call fragment Page Button Click, then return back to same Fragment without Restart the Android App

1.I want to make the Phone Call From App Fragment page Button clicked its works Fine. 2.after Making Call From Fragment Page.Its Restarting the APP. 3.I want to Stop this.Just need to Open same Fragment Page,without Restarting the Application MY…
Kumar
  • 969
  • 2
  • 22
  • 56
0
votes
1 answer

Android : How to integrate dialer in app like true caller

I would want to integrate dialer in my application like one in True Caller. Is there any 3rd party library or android provide any interface for that. Thanks in Advance
user3037028
  • 76
  • 2
  • 6
0
votes
1 answer

Identify empty area in a view

I'm extending the standard dialer apk in Android Marshmallow and I'm trying to remove the area marked by double sided red arrow in the picture below. I tried to do this by printing to log the margin and padding of some views in this fragment, but…
RanSh
  • 189
  • 2
  • 14
0
votes
0 answers

How to detect long click on Key pressed on dialer?

Please tell me how can i get the key value pressed in my app on dial pad because i wanna perform some action on behalf that key value?
Shivam Nagpal
  • 763
  • 2
  • 9
  • 21
0
votes
1 answer

Launch dialer app from meteor app

I have been trying hard to figure out a way to launch dialer app to make phone call from an app developed on meteor platform but did not find a way to do so. In meteor documentation they have mentioned meteor launches dialer app if its wrapped in…
goku
  • 1,197
  • 1
  • 10
  • 14
0
votes
2 answers

how to create my own dialer screen in android programmatically

I want to create in my application dialer that can dial to numbers. I tried to do something structured, but it opens up a new activity, and I need it in the tag. This is an example I found, but not good for me: Intent intent = new Intent…
gal
  • 71
  • 1
  • 12
0
votes
3 answers

Android - where is com.google.android.dialer in the file system

I have an Android phone with com.google.android.dialer application to dial a number ( I get the name by executing ps command after adb shell). But I don't succeed to know where is the application. ls, ps, cat and so can be found in /system/bin but…
user3680197
  • 1
  • 1
  • 1
0
votes
2 answers

Intent.ACTION_CALL is not working when a pop up window opens to select my account

I am implementing an Android app that will allow users to purchase something by dialing a number from my app pressing a button. In single SIM devices it works nicely, but in dual sim devices, when I run my app and click on the "Purchase Button" a…
0
votes
1 answer

Android studio using edittext for dialing

I created in my xml an EditText and a Button. What I'm trying to do in the java is to let the user enter a number, then press the button and then i want the dialer to open with the input. Is there a way to do it? Thx.
Dgotlieb
  • 1,393
  • 2
  • 9
  • 15
0
votes
1 answer

Android: How to show a list of dialer app installed on my device instead of directly calling default dialer

Android: How to show a list of dialer app installed on my device instead of directly calling default dialer Intent intent = new Intent(Intent.ACTION_CALL); startActivity(intent); permission -
Avijeet
  • 1,031
  • 1
  • 10
  • 27
0
votes
0 answers

Android phone number dial or pick from contacts

I want the user to be able to send an sms by either dialing a phone number himself or picking it up from a contact list. I know that I could easily achieve it, querying all the contacts and providing a TextView to either filtering the contacts or…
0
votes
1 answer

android dialing with characters

I want to make a dialer app that will take phone number from the user. and will dial suppose *789*phone_number# how can make this . I've so far done this... Button call; Intent callIntent = new Intent(Intent.ACTION_CALL); String pnd; call =…
Sawpno
  • 85
  • 1
  • 2
  • 10