Reputation: 177
In window phone sdk,we can ovveride the windows back button.But I don't know how to detect phone call coming or ovverride phone call event.Please hepl me.Thanks
Upvotes: 0
Views: 646
Reputation: 89285
There is no way 3rd party apps can intercept incoming phone call in windows phone 8 currently.
The best you can get is Obsecured event. That event raised when your application in foreground and intercepted by incoming call, reminder, or any other system event taking the screen from application. Nothing more.
Anyway, that event too, is not intended to bring developer closer to be able to intercept incoming call.
Upvotes: 1
Reputation: 509
The current Windows Phone SDK doesn't allow you to access any information about received/dropped calls, nor their log information...
I guess that you would have to use with Interop access to achieve such a thing, but that is always tricky!
Upvotes: 0