Delete call from call log after call end

Shivalinga picture Shivalinga · Mar 19, 2011 · Viewed 18.2k times · Source

I am new to Android development. I want to make a call to a number but I don't want to store the number in my Call log. How can I delete the number from call log after the call ends?

Answer

clauziere picture clauziere · Jul 20, 2011

First you have to set up a broadcast receiver to detect the phone state. Here's the exact same question: Stackoverflow - Intent to be fired when a call ends?

And now for deleting the call log entry, here is the first link on google: Call log deletion in Android
In the example he deletes all call entry for a specific number, but you can change the query to delete the entry for a specific call log id.

Hope this helps. Cheers