简体   繁体   中英

Delete all Missed Calls log entries

Is there a way to delete ALL missed calls in the Call Log?

I have seen some posts where they tell you how to delete number by number. I just need to clear all of them (but just Missed calls, not Incoming and not Outgoing)

Thanks

Include the following permissions in your manifest <uses-permission android:name="android.permission.READ_CALL_LOG"/> <uses-permission android:name="android.permission.WRITE_CALL_LOG"/>

Try the following code getContentResolver().delete(CallLog.CONTENT_URI , "type="+CallLog.Calls.MISSED_TYPE , null);

Based on http://developer.android.com/reference/android/provider/CallLog.Calls.html#TYPE

First you have to retrieve the missed calls and then delete them.

Check get-the-missed-call-list-and-delete-it-from-call-log-in-android .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM