Is there a way to handle missed calls in android? I came across CALL_STATE_CHANGED action many times. But how can i check specifically whether it’s a missed call? What I want is to do some action when the user misses a call. How can I do this? Do I need to check call logs after every call and find out whether there is a missed call?
Is there a way to handle missed calls in android? I came across CALL_STATE_CHANGED
Share
I suppose you could use PhoneStateListener to listen for call state change from
CALL_STATE_RINGINGtoCALL_STATE_IDLEwhich indicates the phone was not picked up.