我试图使用意图将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");
答案 0 :(得分:100)
在您的接收意图中,您需要:
Intent i = getIntent();
stock_list = i.getStringArrayListExtra("stock_list");
你拥有它的方式你刚刚创建了一个没有任何额外内容的新空目标。
如果你只有一个额外的,你可以将其浓缩为:
stock_list = getIntent().getStringArrayListExtra("stock_list");
答案 1 :(得分:17)
我已经通过传递ArrayList 以字符串的形式完成了这个。
在依赖关系块 build.gradle 中添加compile 'com.google.code.gson:gson:2.2.4'
。
点击 使用Gradle文件同步项目
<强> Cars.java 强>:
public class Cars {
public String id, name;
}
想要 传递 ArrayList :
List<Cars> cars= new ArrayList<Cars>();
cars.add(getCarModel("1", "A"));
cars.add(getCarModel("2", "B"));
cars.add(getCarModel("3", "C"));
cars.add(getCarModel("4", "D"));
Gson gson = new Gson();
String jsonCars = gson.toJson(cars);
Intent intent = new Intent(FirstActivity.this, SecondActivity.class);
intent.putExtra("list_as_string", jsonCars);
startActivity(intent);
功能:
获取 CarsModelprivate Cars getCarModel(String id, String name){
Cars cars = new Cars();
cars.id = id;
cars.name = name;
return cars;
}
您必须导入java.lang.reflect.Type
;
在 onCreate()上检索 ArrayList :
String carListAsString = getIntent().getStringExtra("list_as_string");
Gson gson = new Gson();
Type type = new TypeToken<List<Cars>>(){}.getType();
List<Cars> carsList = gson.fromJson(carListAsString, type);
for (Cars cars : carsList){
Log.i("Car Data", cars.id+"-"+cars.name);
}
希望这会节省时间,我保存了它。
完成强>
答案 2 :(得分:12)
如果您使用通用数组列表与类而不是特定类型,如
<强> EX:强>
private ArrayList<Model> aListModel = new ArrayList<Model>();
此处模型=类
接收意图如:
aListModel = (ArrayList<Model>) getIntent().getSerializableExtra(KEY);
必须记住:
这里Model-class必须实现如下: ModelClass实现Serializable
答案 3 :(得分:4)
假设您需要将以下类的arraylist从当前活动传递到下一个活动 // arraylist中的对象类 //记得从Serializable接口实现该类 // Serializable意味着它将对象转换为字节流并有助于传输该对象
public class Question implements Serializable {
...
...
...
}
在您当前的活动中,您可能有一个ArrayList,如下所示
ArrayList<Question> qsList = new ArrayList<>();
qsList.add(new Question(1));
qsList.add(new Question(2));
qsList.add(new Question(3));
// intialize Bundle instance
Bundle b = new Bundle();
// putting questions list into the bundle .. as key value pair.
// so you can retrieve the arrayList with this key
b.putSerializable("questions", (Serializable) qsList);
Intent i = new Intent(CurrentActivity.this, NextActivity.class);
i.putExtras(b);
startActivity(i);
为了在下一个活动中获得arraylist
//get the bundle
Bundle b = getIntent().getExtras();
//getting the arraylist from the key
ArrayList<Question> q = (ArrayList<Question>) b.getSerializable("questions");
答案 4 :(得分:1)
//arraylist/Pojo you can Pass using bundle like this
Intent intent = new Intent(MainActivity.this, SecondActivity.class);
Bundle args = new Bundle();
args.putSerializable("imageSliders",(Serializable)allStoriesPojo.getImageSliderPojos());
intent.putExtra("BUNDLE",args);
startActivity(intent);
Get SecondActivity like this
Intent intent = getIntent();
Bundle args = intent.getBundleExtra("BUNDLE");
String filter = bundle.getString("imageSliders");
//Happy coding
答案 5 :(得分:0)
public class StructMain implements Serializable {
public int id;
public String name;
public String lastName;
}
这是我的项目。实现Serializable 并创建ArrayList
ArrayList<StructMain> items =new ArrayList<>();
并放入Bundle
Bundle bundle=new Bundle();
bundle.putSerializable("test",items);
并创建一个将Bundle置于Intent
的新IntentIntent intent=new Intent(ActivityOne.this,ActivityTwo.class);
intent.putExtras(bundle);
startActivity(intent);
for receive bundle插入此代码
Bundle bundle = getIntent().getExtras();
ArrayList<StructMain> item = (ArrayList<StructMain>) bundle.getSerializable("test");