0

如何从广播接收器打开通话记录

am using a broadcast receiver to monitor call is coming from which number...

and for that i need to open calllog to show to the user

how to open call log from broadcastreceiver?
4

1 回答 1

0

在 stackoverflow.com 中长时间搜索后

现在我可以使用广播接收器打开通话记录

Intent i = new Intent(Intent.ACTION_VIEW, Uri.parse("content://call_log/calls"));
i.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(i);
于 2013-01-29T19:10:29.783 回答