当仅从特定号码和特定端口收到SMS时,我需要启动应用程序。如果应用程序已经运行,我需要解析此消息。我怎么能用PendingIntent做到这一点?
答案 0 :(得分:1)
首先制作接收此类消息的broadcastreceiver类。 当收到短信时,你就会激发你班级的意图。
class SMSReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
Bundle bundle = intent.getExtras();
SmsMessage[] msgs = null;
String str = "";
if (bundle != null) {
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";
}
Toast.makeText(context, str, Toast.LENGTH_SHORT).show();
Intent mainActivityIntent = new Intent(context, SMS.class);
mainActivityIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(mainActivityIntent);
Intent broadcastIntent = new Intent();
broadcastIntent.setAction("SMS_RECEIVED_ACTION");
broadcastIntent.putExtra("sms", str);
context.sendBroadcast(broadcastIntent);
}
}
}
将sms_sender存储在字符串中
String msg_sender=msg[0].getOriginatingAddress();
并在收到
消息后给出条件 if(msg_sender=(String)"your_unique_number")
and fire the intent of your class if this condition is true.