覆盖默认的android消息应用程序

时间:2010-09-20 15:22:37

标签: android sms mms

我想覆盖默认的android消息传递应用程序。 如果我收到短信或短信,我想将其发送到电子邮件,但我不想在电话上发送任何通知。 所以基本上我想替换默认的消息传递应用程序。

如何使我的应用程序成为接收短信​​的默认应用程序?


非常感谢。这正是我所需要的。但我还有一个问题。 我使用接收器来获取消息......但我不知道如何在手机中找到消息并将其标记为已读。

public void onReceive(Context context, Intent intent) {
    // TODO Auto-generated method stub
    //---get the SMS message passed in---
    Bundle bundle = intent.getExtras();        
    SmsMessage[] msgs = null;
    String str = "";            
    if (bundle != null)
    {
        //---retrieve the SMS message received---
        Object[] pdus = (Object[]) bundle.get("pdus");
        msgs = new SmsMessage[pdus.length];            
        for (int i=0; i<msgs.length; i++){
            msgs[i] = SmsMessage.createFromPdu((byte[])pdus[i]);                
            str += "SMS from " + msgs[i].getOriginatingAddress();                     
            str += " :";
            str += msgs[i].getMessageBody().toString();
            str += "\n";        
        }
        //---display the new SMS message---
        Toast.makeText(context, str, Toast.LENGTH_SHORT).show();

        //---find and mark the messages as read---
        Uri uriSms = Uri.parse("content://sms/inbox/");
       try{
        Cursor c = context.getContentResolver().query(uriSms, null,null,null,null);
            //---code to find the message by body and sender---
            ...

    }

有没有什么方法可以像id一样识别消息? 现在,我找到了比较收件箱中所有邮件的bofy和发件人编号的邮件。

谢谢, 拉杜

3 个答案:

答案 0 :(得分:8)

您的思维方式中没有“默认应用程序”。在Android中调度应用程序的方式是Intents。应用程序将使用IntentFilter来确定它可以处理特定类型的Intents。您正在寻找的是能够处理BroadcastReceiver意图的SMSReceived。这样可以在收到短信时通知您的申请。要隐藏通知,您需要使用短信ContentProvider将短信标记为已读。这将清除通知托盘中的通知。除非您从SMS ContentProvider中删除邮件,否则无法隐藏默认邮件应用程序中的邮件。查看this link了解如何开始使用BroadcastReceivers

答案 1 :(得分:0)

有一种方法可以阻止邮件进入默认邮件应用程序。如果将BroadcastReceiver的优先级设置得足够高(我们使用100)并调用abortBroadcast来阻止任何较低优先级的BroadcastReceivers接收意图。只有在订购了意图广播时,它才会起作用,这是我们无法控制的。但事实证明SMS_SENT广播是订购的,我怀疑MMS_SENT广播也是如此。

答案 2 :(得分:0)

如果您发送的BroadcastReceiver的优先级足够高,则您的应用程序是第一个接收消息的应用程序, BEFORE 消息存储在数据库中。 我想解决方案是将消息存储在数据库中并调用abortBroadcast();,但我自己并没有尝试过。

祝你好运!