[Android Tips] 3. Launch CallLog Activity

Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(android.provider.CallLog.Calls.CONTENT_URI);
startActivity(intent);
原文地址:https://www.cnblogs.com/shaobin0604/p/3645193.html