我正在学习如何在android中发送短信,已经看到如下代码:
public class SMSReceiver extends BroadcastReceiver
{
@Override
public void onReceive(Context context, Intent intent)
{
//---get the SMS message passed in---
Bundle bundle = intent.getExtras();
SmsMessage[] msgs = null;
String str = “”;
if (bundle != null)
{
//---retrieve the SMS message received---
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”;
}
//---display the new SMS message---
Toast.makeText(context, str, Toast.LENGTH_SHORT).show();
}
}
}
现在我的问题是我怎么知道传递给onReceive函数的Intent对象的内容是什么?如下:
Object[] pdus = (Object[]) bundle.get(“pdus”);
我怎么知道捆绑对象中有一个“ pdus”键?
我在API文档中找不到任何线索,任何人都知道相关信息在哪里?
我不仅想知道SMS意图传递给onReceive函数的内容,而且还不想知道其他与系统有关的意图,但是我无法在API文档中找到任何相关信息。我想知道这些信息真的存在吗?
最佳答案
您可以使用pdus
使用bundle.containsKey("pdus")
检查捆绑包是否包含带有键true
的键值对,如果有Protocol Data Units
(您的情况下为SMS的PDU),则返回if (bundle != null && bundle.containsKey("pdus"))
。
因此,处理PDU的检查应为