如果我的电话到达其他语音邮件,我想推出一些其他应用。如何在android中检测到它? 感谢
答案 0 :(得分:0)
您可以收听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
}
}