8

我如何将 2 个教派数组对象作为参数传递给另一个活动

如何在另一个活动中获取二维数组字符串值

   String [][]str;

    Intent l = new Intent(context,AgAppMenu.class);
                 l.putExtra("msg",str);
                 l.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);   
                 context.startActivity(l);



  another Activity class

   String[][] xmlRespone2;

    xmlRespone2 = getIntent().getExtras().getString("msg");
4

5 回答 5

14

您可以使用putSerializable。数组是可序列化的。

储藏:

bundle.putSerializable("list", selected_list); // 这里的 bundle 是 Bundle 对象。

访问:

String[][] passedString_list = (String[][]) bundle.getSerializable("list");

例子

Intent mIntent = new Intent(this, Example.class);
Bundle mBundle = new Bundle();
mBundle.putSerializable("list", selected_list);
mIntent.putExtras(mBundle);
于 2012-08-31T12:00:06.147 回答
6

这终于对我有用:

要开始一个新活动(发送 String[][] 和 String):

String[][] arrayToSend=new String[3][30];
String stringToSend="Hello";
Intent i = new Intent(this, NewActivity.class);

i.putExtra("key_string",stringToSend);

Bundle mBundle = new Bundle();
mBundle.putSerializable("key_array_array",  arrayToSend);
i.putExtras(mBundle);

startActivity(i);

在 NewActivity.onCreate 中访问:

String sReceived=getIntent().getExtras().getString("key_string");

String[][] arrayReceived=null;
Object[] objectArray = (Object[]) getIntent().getExtras().getSerializable("key_array_array");
if(objectArray!=null){
    arrayReceived = new String[objectArray.length][];
    for(int i=0;i<objectArray.length;i++){
        arrayReceived[i]=(String[]) objectArray[i];
    }
}
于 2013-09-28T13:38:59.793 回答
2

您可以定义一个自定义类,该类实现Parcelable并包含从 Parcel 读取和写入二维数组的逻辑。然后,将那个可包裹的物品放入里面Bundle进行运输。

于 2012-08-31T11:58:05.837 回答
0

将 2darray 设置为 public static void。让 current_class 成为我们在其中创建二维数组的类 我们想要将数据传递给 NewActivity

Class<?> ourClass=Class.forName("com.example.testapp.NewActivity");
Intent ourIntent= new Intent(current_class.this,ourClass);
intent_name.putExtra("name", 2darray_name);
startActivity(ourIntent);`

要在 NewActivity 中访问它,请使用 current_class.2darray_name 其中 current_class 是它最初定义的类。

于 2013-10-23T21:03:56.420 回答
-1

一个解决方案是您可以将其设置为静态,以便您可以在任何活动中使用它。

Class A{
 public static String [][]str;
...
    Intent l = new Intent(context,AgAppMenu.class);
                 l.putExtra("msg",str);
                 l.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);   
                 context.startActivity(l);


}

Class B{

...
you can use it with Just A.(ArrayName)
System.out.println(A.str);

}

希望它会帮助你。

于 2012-08-31T12:00:47.987 回答