0

私の通話が他のボイスメールに届いている場合、他のアプリを起動したいと思います。Androidでそれを検出する方法は?ありがとう

4

1 に答える 1

0

LISTEN_MESSAGE_WAITING_INDICATOR のブロードキャストを聞いて、それに基づいて行動することができます

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

PhoneStateListener を拡張してから、クラスを初期化します

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
  }
}
于 2012-08-22T19:21:18.613 に答える