我將2d數組[] []對象作爲一個意圖額外傳遞給另一個活動,但它的顯示錯誤我不能確定我該怎麼做?如何通過一個2維數組作爲一個意圖額外的android
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";
String[][] xmlResponse2= null;
String[] test = str.split("\n");
xmlResponse2= new String[0][test.length];
for (int i = 0; i < test.length; i++) {
xmlResponse2[0][i]=test[i];
}
Intent l = new Intent(context,AgAppMenu.class);
l.putExtra("msg",xmlResponse2[0][i]);
l.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(l);
l.putExtra( 「msg」 中,xmlResponse2 [0] [1]); 這條線顯示一個錯誤 –
它超出了我的範圍你不能使用我有 –
然後我怎麼通過 xmlResponse2 [0] [i]值作爲參數到另一個活動? –