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 dialer to a fixed number

I'm trying to make an android project that will dial a fixed number. It is working when I'm using normal number like 01712364445 or something like that. But when I'm using this number *566# it is dialing to *567 that is # is missing.how to solve…
Sawpno
  • 85
  • 1
  • 2
  • 10
0
votes
1 answer

How to start a audio song when the Broadcast Receiver gets the state of offhook and stop it when the dial closes

How to start a audio song when the Broadcast Receiver gets to call a number or the state of OFFHOOK state and stop it when IDLE or the call ends. import android.content.BroadcastReceiver; import android.content.Context; import…
0
votes
2 answers

How can I add big AND small letters in a TextView like in the Android Dialer app?

How can I add big AND small letters in a TextView like in the image below: Sorry: "nuber" = "number"
Thomas Vos
  • 12,271
  • 5
  • 33
  • 71
-1
votes
1 answer

Intent ACTION_CALL is not being intercepted by my application

There's an application with a button that when pressed is using the startActivity method with the ACTION_CALL intent. This is how its called: public void call(String number) { Intent myIntent = new Intent(Intent.ACTION_CALL); …
JJ Ab
  • 492
  • 4
  • 15
-2
votes
1 answer

How to perform action on a specific number dial in android?

I want a service to monitor the calls I dial, and to perform a specific task parallel to a specific call. Example. I call 123 from the dialer and a specific task gets triggered at that time. But if I dial some other number then nothing should…
Gautam Jain
  • 651
  • 8
  • 16
-3
votes
1 answer

Is it possible to replace Android's inbuilt Caller with Custom UI?

Android's UI that i want to replace with my own. So is it possible to replace and yes, then please suggest me some User-Permission to do so
-6
votes
2 answers

How to get Dialed number in my Application Without Permission

I want to get Dialed Number in my application but without any Manifest Permission tag. I know how to do it with permission, Is there a way to do this without Manifest Permission tag?
1 2 3 4 5 6
7