我正在学习如何在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 Intent 传递给 onReceive 函数是什么,还想知道其他系统相关的 Intent,但我在 API doc 中找不到任何相关信息。我想知道这些信息真的存在吗?