Broadcast Receiver for Sent SMS

前端 未结 2 529
無奈伤痛
無奈伤痛 2021-01-03 12:39

Is there a Broadcast Receiver in android to listen to the SMS sent event?

In my application I want to count the number of SMS sent every predefined time interval. If

2条回答
  •  醉话见心
    2021-01-03 13:01

    You can edit your own sms with SmsManager api from google and be notified by a PendingIntent:

    SmsManager smsManager = SmsManager.getDefault();
    smsManager.sendTextMessage (String destinationAddress, String scAddress, String text, PendingIntent sentIntent, PendingIntent deliveryIntent)
    

    You can be notified of the delivery with the parameter: PendingIntent sentIntent

    But SmsManager is now deprecated :(

提交回复
热议问题