How can I pick a contact from call logs?
This is my code, but when i try Intent.ACTION_PICK
, it doesn't work
Intent showCallLog = new Intent();
showCallLog.setAction(Intent.ACTION_VIEW);
showCallLog.setType(CallLog.Calls.CONTENT_TYPE);
context.startActivity(showCallLog);
I'm not sure whether it can be done with ACTION_PICK, if it is feasible, you can create simply a pick dialog for this, e.g.: