I wanted to change the interface of the dial page and call. I rummaged everywhere, nowhere is it spoken about or was not looking for it correctly.

Question: Is it possible? If so, tell me where to dig.

  • Yes it is possible. Start digging out of here - Barmaley
  • Sorry, but where do you see the duplicate. There is about incoming calls and here about dialing, that is, where the numbers are! - DevOma
  • Yes, I agree - hurried - Barmaley

1 answer 1

You need to create your own application with your own dialer interface and set it as the default handler of the dialer in the manifest:

<intent-filter> <action android:name="android.intent.action.CALL_BUTTON" /> <category android:name="android.intent.category.DEFAULT" /> </intent-filter> <intent-filter> <action android:name="android.intent.action.VIEW" /> <action android:name="android.intent.action.DIAL" /> <category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.BROWSABLE" /> <data android:scheme="tel" /> </intent-filter> 

Google keywords android + dialer