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

后端 未结 5 1441
挽巷
挽巷 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条回答
  •  -上瘾入骨i
    2020-11-22 16:25

    /**
     * Check priority
     * @param activity
     */
    public static void receiverPriority(Activity activity){
    
        Intent smsRecvIntent = new Intent("android.provider.Telephony.SMS_RECEIVED");
        List infos =  activity.getPackageManager().queryBroadcastReceivers(smsRecvIntent, 0);
        for (ResolveInfo info : infos) {
            System.out.println("Receiver: " + info.activityInfo.name + ", priority=" + info.priority);
        }
    }
    

    Check priority and set higher priority (in your manifest) than other receivers.

提交回复
热议问题