I need to call a activity when the phone state comes from ringing to idle. But It says The constructor Intent(MyPhoneStateListener, Class) is undefined. How can call the activity.

    public class MyPhoneStateListener extends PhoneStateListener {
        //static String org="";

        public void onCallStateChanged(int state,String incomingNumber){
              switch(state){
                case TelephonyManager.CALL_STATE_IDLE:
                  Log.d("DEBUG", "IDLE");
                 // MissedCall ms=new MissedCall();

                 Intent missintent=new Intent(this,MissedCall.class);
                 startActivity(missintent);

                break;
                case TelephonyManager.CALL_STATE_OFFHOOK:
                  Log.d("DEBUG", "OFFHOOK");
                break;
                case TelephonyManager.CALL_STATE_RINGING:
                  Log.d("DEBUG", "RINGING");
                break;
                }
              }
    }
link|improve this question

68% accept rate
feedback

1 Answer

up vote 0 down vote accepted

you can call the activity like this:

Intent missintent= new Intent(context, MissedCall.class);
missintent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(missintent);
link|improve this answer
Thanks Vineet. But it says "The method startActivity(Intent) is undefined for the type MyPhoneStateListener". – Manikandan Sep 13 '11 at 10:42
put the MyPhoneStateListener class in the service...check this:lovingandroid.blogspot.com/2011/07/intercept-call-activity.html – Vineet Shukla Sep 13 '11 at 10:44
Though I put the MyPhoneStateListener class in service, I got the same error. – Manikandan Sep 13 '11 at 10:51
show your logcat ...I have done it. There must be something wrong .. – Vineet Shukla Sep 13 '11 at 10:53
I didn't run the app. After entering the code it shows error in the IDE itself. – Manikandan Sep 13 '11 at 11:00
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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