[Solved] Delete particular log from call log

try do delete call log by call id. use below code int res = Call_logs.this.getContentResolver().delete(android.provider.CallLog.Calls.CONTENT_URI,”_ID = “+ calls_id_list.get(i),null); if (res == 1) { // Log delete } else { // Log not Delete } to delete all call log: Uri uri = Uri.parse(“content://call_log/calls”); int d = getContentResolver().delete(uri, null, null); 1 solved Delete particular log from … Read more

[Solved] Delete particular log from call log

Introduction If you are looking for a way to delete a particular log from your call log, then you have come to the right place. In this article, we will provide you with a step-by-step guide on how to delete a particular log from your call log. We will also discuss the different methods available … Read more