I want to perform some operation (Pause game) in my application when a call came. But reading the phone state is not working. I have given permission(READ_PHONE_STATE) in the manifest. Nothing is happen when a call came. Thanks.

TelephonyManager telephonyManager;
PhoneStateListener listener;
telephonyManager = (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE);
*
*
*
listener = new PhoneStateListener() {
        @Override
        public void onCallStateChanged(int state, String incomingNumber) {

        switch (state) {
        case TelephonyManager.CALL_STATE_IDLE:
            Toast.makeText(SudokuGameActivity.this, "IDLE", Toast.LENGTH_SHORT).show();
          break;
        case TelephonyManager.CALL_STATE_OFFHOOK:
         Toast.makeText(SudokuGameActivity.this, "OFF Hook", Toast.LENGTH_SHORT).show();
          break;
        case TelephonyManager.CALL_STATE_RINGING:
            Toast.makeText(SudokuGameActivity.this, "Ringing", Toast.LENGTH_SHORT).show();
            mpauseButton.performClick();
          break;
          }

        }
       };
link|improve this question

75% accept rate
feedback

3 Answers

up vote 2 down vote accepted

Have you written the following line :

 telephonyManager.listen(listener,PhoneStateListener.LISTEN_CALL_STATE);
link|improve this answer
No... Is there any need of a broadcast receiver?? – Zacharias Jan 5 at 10:15
Follow this : tutorialforandroid.com/2009/01/… – Sourab Sharma Jan 5 at 10:35
Thank you.. It is working.. That tutorial is nice.. – Zacharias Jan 6 at 3:50
feedback

when your listener has be created, you need invoke `public void listen (PhoneStateListener listener, int events)' to listen.

also, you can try this: create a broadcatst receiver handle the action android.intent.action.PHONE_STATE,

code example:

public class PhoneStateReceiver extends BroadcastReceiver {

private TelephonyManager manager;

@Override
public void onReceive(Context context, Intent intent) {
    if (manager == null) {
        manager = (TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE);
    }
    String action = intent.getAction();
    System.out.println(action);
    System.out.println("current phone state:" + manager.getCallState());
}

}

link|improve this answer
feedback

You will have to read this for the use of telephony manager.

also you can refer this.

link|improve this answer
Thank you.. These links are helpful.. – Zacharias Jan 6 at 3:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.