通过Intent传递ArrayList
我试图使用意图将arrayList传递给另一个活动。这是第一个活动中的代码。
case R.id.editButton:
Toast.makeText(this, "edit was clicked", Toast.LENGTH_LONG).show();
Intent intent = new Intent(this, editList.class);
intent.putStringArrayListExtra("stock_list", stock_list);
startActivity(intent);
break;
这是我尝试在第二个活动中检索列表的地方。这里有问题吗?
Intent i = new Intent(); //This should be getIntent();
stock_list = new ArrayList<String>();
stock_list = i.getStringArrayListExtra("stock_list");
浮云间
跃然一笑
相关分类