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 に答える