public void onCallStateChanged(int state, String incomingNumber) {
      switch(state)
      {
      case TelephonyManager.CALL_STATE_RINGING:
       Intent new_intent = new Intent(Intent.ACTION_MEDIA_BUTTON);
       new_intent.putExtra(Intent.EXTRA_KEY_EVENT,new KeyEvent(KeyEvent.ACTION_DOWN, KeyEvent.KEYCODE_HEADSETHOOK));
       sendOrderedBroadcast(new_intent, null);       
       break;
      }
     }




 전화가 왔을때 자동으로 전화를 수신 하는 방법인데요..

프로요 전버전 에서는 전화 수신이 됐는데..

프로요로 올라오면서 자동 전화 수신이 되지 않습니다.

 혹시 다른 방법으로 전화를 자동 수신 할 수 있는 방법이 있을까요?

 또는 혹시 프로요에서 위와 같은 방법으로 전화 자동 수신을 성공하신분 있으세요??