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.
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.
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
Source: https://ru.stackoverflow.com/questions/613235/
All Articles