ねえ、通話中に 1 または 2 を押したいのですが。たとえば、コールセンターに電話して、この番号を手でクリックせずに1つのキーを押して営業部門に行きたいが、通話中に問題なくクリックしたい場合。
これで、キープレスを呼び出して呼び出しイベントを処理できますが、機能しません。
PhoneStateListener myCallListener = new PhoneStateListener(){
@Override
public void onCallStateChanged(int state, String incomingNumber) {
// the variable incomingNumber holds the number calling.
// the state variable holds the state of the phone (Ringing, Idle ...)
switch (state) {
case TelephonyManager.CALL_STATE_RINGING:
Log.e("Incoming_call", incomingNumber+" is calling me ...");
break;
case TelephonyManager.CALL_STATE_OFFHOOK:
KeyEvent eventDown = new KeyEvent(KeyEvent.ACTION_DOWN, KeyEvent.KEYCODE_1);
dispatchKeyEvent(eventDown);
// your logic here, right now the incoming caller is logged.
Log.e("Out Call", incomingNumber+" is calling me ...");
break;
default:
break;
}
super.onCallStateChanged(state, incomingNumber);
}
};
TelephonyManager phoneManager = (TelephonyManager)
this.getSystemService(TELEPHONY_SERVICE);
phoneManager.listen(myCallListener,
PhoneStateListener.LISTEN_CALL_STATE);