android接听电话

时间:2012-12-17 08:00:47

标签: android

我们不能使用java反射来回答android2.3之后的调用。所以发现另一种方式是acswer:

private void answerPhoneHeadsethook(Context context)
{
    // Simulate a press of the headset button to pick up the call
    Intent buttonDown = new Intent(Intent.ACTION_MEDIA_BUTTON);
    buttonDown.putExtra(Intent.EXTRA_KEY_EVENT, new KeyEvent(KeyEvent.ACTION_DOWN, KeyEvent.KEYCODE_HEADSETHOOK));
    context.sendOrderedBroadcast(buttonDown, "android.permission.CALL_PRIVILEGED");

    // froyo and beyond trigger on buttonUp instead of buttonDown
    Intent buttonUp = new Intent(Intent.ACTION_MEDIA_BUTTON);
    buttonUp.putExtra(Intent.EXTRA_KEY_EVENT, new KeyEvent(KeyEvent.ACTION_UP, KeyEvent.KEYCODE_HEADSETHOOK));
    context.sendOrderedBroadcast(buttonUp, "android.permission.CALL_PRIVILEGED");
}

我在mediaButtonBroadcastReceive中找到了AudiaService的一些信息,但我找不到直接上课来处理这个事件。谁能告诉我?

0 个答案:

没有答案
相关问题