我可以发送"收到短信的意图"?意图、短信、QUOT

2023-09-06 16:44:17 作者:友情太狗.

标题是显而易见的。我可以发送短信收到的意图在Android手机?换句话说,几乎接收自定义短信伪造一些短信接收器。

Title is obvious. Can I send "SMS received intent" on the android phone? In other words, virtually receive custom SMS to fake some SMS receivers.

推荐答案

您可以创建假的SMS(GMS型)像真正的消息,所以内置的渔获物。这里是我的回答

You can create fake SMS (GMS type) so built-in catch like real message. Here is my answer

 Intent intent = new Intent();
intent.setClassName("com.android.mms",
        "com.android.mms.transaction.SmsReceiverService");
intent.setAction("android.provider.Telephony.SMS_RECEIVED");
intent.putExtra("pdus", new Object[] { pdu });
intent.putExtra("format", "3gpp");
context.startService(intent);