通过Intent传递ArrayList

时间:2011-03-21 06:38:04

标签: android arraylist android-intent

我试图使用意图将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");

6 个答案:

答案 0 :(得分:100)

在您的接收意图中,您需要:

Intent i = getIntent();  
stock_list = i.getStringArrayListExtra("stock_list");

你拥有它的方式你刚刚创建了一个没有任何额外内容的新空目标。

如果你只有一个额外的,你可以将其浓缩为:

stock_list = getIntent().getStringArrayListExtra("stock_list");

答案 1 :(得分:17)

我已经通过传递ArrayList 字符串的形式完成了这个。

  1. 依赖关系 build.gradle 中添加compile 'com.google.code.gson:gson:2.2.4'

  2. 点击 使用Gradle文件同步项目

  3. <强> Cars.java

    public class Cars {
        public String id, name;
    }
    

    FirstActivity.java

    想要 传递 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);
    

    功能

    获取 CarsModel
    private Cars getCarModel(String id, String name){
           Cars cars = new Cars();
           cars.id = id;
           cars.name = name;
        return cars;
     }
    

    SecondActivity.java

    您必须导入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

的新Intent
Intent 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");