编程语言
首页 > 编程语言> > 覆盖默认的android消息应用程序

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

作者:互联网

我想覆盖默认的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和发件人编号的邮件.

谢谢,
拉杜

解决方法:

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

标签:android,sms,mms
来源: https://codeday.me/bug/20190726/1545313.html