如何通过一个2渔政阵列如在机器人的意图额外(how to pass a 2 dimention ar

2019-10-17 04:26发布

我通过二维数组[] []对象作为额外的意图到另一个活动,但其显示的错误,我不能确定我该怎么办?

     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);

Answer 1:

Intent.putExtra不接受2维阵列按照以下文献http://developer.android.com/reference/android/content/Intent.html

我有检查Intent.putExtra的源代码,它使用捆绑类用于存储数据

http://developer.android.com/reference/android/os/Bundle.html

这里是Intent.java源代码

  1. Intent.java http://gitorious.org/android-eeepc/base/blobs/fda6fae156e31a287e3cfbf66e51ea1405cdf479/core/java/android/content/Intent.java
  2. Bundle.java https://github.com/android/platform_frameworks_base/blob/master/core/java/android/os/Bundle.java

Bundle.java使用“HashMap的”存储的内容,

就我所知它直接是不可能的

你可以使用putParcelable方法,你需要创建自己的类的instanceof 2维数组。

一个快速的解决方案

String[] keys = createKeys(); 
String[] values = createValues(); 

(keys.length == values.length) 

bundle.putExtra("keys", keys); 
bundle.putExtra("values", values); 


文章来源: how to pass a 2 dimention array as an intent extra in android