使用 Intent.putExtra 发送数组
2022-08-31 14:22:49
我在活动A中有一个整数数组:
int array[] = {1,2,3};
我想将该变量发送到活动 B,因此我创建了一个新的意图并使用 putExtra 方法:
Intent i = new Intent(A.this, B.class);
i.putExtra("numbers", array);
startActivity(i);
在活动B中,我得到的信息:
Bundle extras = getIntent().getExtras();
int arrayB = extras.getInt("numbers");
但这并不是真正发送数组,我只是在数组B上得到值“0”。我一直在寻找一些例子,但我没有找到任何东西。