List of usage examples for android.telecom TelecomManager cancelMissedCallsNotification
@RequiresPermission(android.Manifest.permission.MODIFY_PHONE_STATE) public void cancelMissedCallsNotification()
From source file:Main.java
/** Removes the missed call notifications. */ public static void removeMissedCallNotifications(Context context) { TelecomManager telecomManager = (TelecomManager) context.getSystemService(Context.TELECOM_SERVICE); telecomManager.cancelMissedCallsNotification(); }