Can we delete an SMS in Android before it reaches the inbox?

后端 未结 5 1444
挽巷
挽巷 2020-11-22 16:16

I am deleting an SMS from the inbox but I want to know: How can I delete it before it reaches the inbox?

5条回答
  •  误落风尘
    2020-11-22 16:44

    If you have a scenario like this and you want to delete or ignore the message related to this contact number "+44xxxxx" etc, then use this code in SMS Broadcast receiver

     if(sender.equalsIgnoreCase("+44xxxxxx")
       this.abortBroadCast();
    

    You also have to set it the high priority.

提交回复
热议问题