android中未接来电的广播接收器

时间:2010-09-08 06:35:57

标签: android android-intent broadcastreceiver

有谁知道未接来电的意图是什么。实际上我想在我的应用程序中发送未接来电和接听电话的短信。

2 个答案:

答案 0 :(得分:11)

您需要使用ContentObserver

public class MissedCallsContentObserver extends ContentObserver
{
    public MissedCallsContentObserver()
    {
        super(null);
    }

    @Override
    public void onChange(boolean selfChange)
    {
        Cursor cursor = getContentResolver().query(
            Calls.CONTENT_URI, 
            null, 
            Calls.TYPE +  " = ? AND " + Calls.NEW + " = ?", 
            new String[] { Integer.toString(Calls.MISSED_TYPE), "1" }, 
            Calls.DATE + " DESC ");

        //this is the number of missed calls
        //for your case you may need to track this number
        //so that you can figure out when it changes
        cursor.getCount(); 

        cursor.close();
    }
}

从您的应用中,您只需要这样做:

MissedCallsContentObserver mcco = new MissedCallsContentObserver();
getApplicationContext().getContentResolver().registerContentObserver(Calls.CONTENT_URI, true, mcco);

答案 1 :(得分:10)

没有针对未接来电的特定广播,AFAIK。

您可以观看ACTION_PHONE_STATE_CHANGED广播,等到手机从EXTRA_STATE_RINGING转移到EXTRA_STATE_IDLE,然后尝试检查CallLog内容提供商,看看是否错过了通话。我没有尝试过这种技术,但它可能有效。