I am able to open the Call Log through the following lines:
Intent showCallLog = new Intent();
showCallLog.setAction(Intent.ACTION_VIEW);
showCallLog.setType(CallLog.Calls.CONTENT_TYPE);
showCallLog.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(showCallLog);
However I would like to open only a single view of the CallLog (for example Missed Call)
I tried to add
showCallLog.putExtra(CallLog.Calls.TYPE,CallLog.Calls.MISSED_TYPE);
but it doesn't change anything!