如何在Android中获得通话结果

时间:2014-06-05 14:48:04

标签: android phone-call

我试图通过programmaticaly拨打电话,并在代码中获得通话结果。我以这种方式打电话:

    Intent i = new Intent(Intent.ACTION_CALL);
    i.setData(Uri.parse("tel:" + EmergenciesConfigActivity.contactList.get(i).getTelf_number().trim()));
    startActivity(i);

我已经考虑过使用startActivityForResult方法,但我无法猜测如何配置onActivityResult方法。

0 个答案:

没有答案