Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6675915
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T03:55:14+00:00 2026-05-26T03:55:14+00:00

is there anyway to remove a missed call notification by code? And somehow remove

  • 0

is there anyway to remove a missed call notification by code? And somehow remove the last missed call from call history?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T03:55:15+00:00Added an answer on May 26, 2026 at 3:55 am

    yes, it is possible.Try this:

    Uri UriCalls = Uri.parse("content://call_log/calls");
    Cursor cursor = getApplicationContext().getContentResolver().query(UriCalls, null, null, null, null);
    

    Reading call log entries…

    if(cursor.getCount() > 0){
        cursor.moveToFirst();
        while(!cursor.isAfterLast()){
            String number = cursor.getString(cursor.getColumnIndex(CallLog.Calls.NUMBER)); // for  number
            String name = cursor.getString(cursor.getColumnIndex(CallLog.Calls.CACHED_NAME));// for name
            String duration = cursor.getString(cursor.getColumnIndex(CallLog.Calls.DURATION));// for duration
            int type = Integer.parseInt(cursor.getString(cursor.getColumnIndex(CallLog.Calls.TYPE)));// for call type, Incoming or out going
            cursor.moveToNext();
        }
    }
    

    Deleting entry in call log…

    String queryString= "NUMBER='" + number + "'";
    if (cursor.getCount() > 0){
            getApplicationContext().getContentResolver().delete(UriCalls, queryString, null);
    }
    

    Permission:

    <uses-permission android:name="android.permission.WRITE_CONTACTS" />
    <uses-permission android:name="android.permission.READ_CONTACTS" />
    

    Note: Please refer this doc over call log for more clearity.

    Using the above code you can get the desired result.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there anyway to use atrm command to remove queue job from PHP web
Is there anyway to remove a character from a given position? Let's say my
Is there anyway to remove text from a string set with set /p=Command? For
is there anyway to remove header information from mp3 file such that mp3 file
In PHPmailer is there anyway to remove the required from email address as your
Is there anyway to remove the comma from the Jspinner, i'm trying to use
Is there anyway to remove the SWIGTYPE part from the generated class names and
Is there any way to remove all forgeinKey and primary key contriants from Database
Is there anyway to remove an event listener added like this: element.addEventListener(event, function(){/* do
Is there anyway to remove activity label bar and label itself which is set

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.