How do you clear your call logs history in android?
问题 How can you clear the entire call log history in android? Currently i have this code that can only clear a particular call log public void DeleteCallLogByNumber(String number) { String queryString="NUMBER="+number; this.getContentResolver().delete(CallLog.Calls.CONTENT_URI,queryString,null); } } 回答1: I was able to do it with this, It's been a while though. Not sure if this still works. getContentResolver().delete(android.provider.CallLog.Calls.CONTENT_URI, null, null) ; EDIT: Please note I am