Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to launch some other apps if my call is reaching others voicemail. How to detect it in android? Thanks

share|improve this question

1 Answer

You could listen to the broadcast of LISTEN_MESSAGE_WAITING_INDICATOR and then act upon it

http://developer.android.com/reference/android/telephony/PhoneStateListener.html#LISTEN_MESSAGE_WAITING_INDICATOR

You would extend PhoneStateListener and then initialize the class

public class VoicemailListener extends PhoneStateListener {

  private final Context context;

  public VoicemailListener(Context context) {
    this.context = context;
  }

  @Override
  public void onMessageWaitingIndicatorChanged(boolean mwi) {
              //Message Recieved, do your work here
  }
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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