2012-08-22 27 views

回答

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 
    } 
} 
相關問題