0
我想推出一些其他的應用程序,如果我的電話是其他語音郵件。如何在android中檢測它? 感謝如何知道電話是在達到語音郵件在Android
我想推出一些其他的應用程序,如果我的電話是其他語音郵件。如何在android中檢測它? 感謝如何知道電話是在達到語音郵件在Android
你可以聽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
}
}