web-dev-qa-db-fra.com

Passing ArrayList à travers l'intention

J'essaie de passer un tableauListe à une autre activité à l'aide d'intentions. Voici le code dans la première activité.

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;

C'est là que j'essaie de récupérer la liste dans la deuxième activité. Quelque chose ne va pas ici?

Intent i = new Intent(); //This should be getIntent();
    stock_list = new ArrayList<String>();

    stock_list = i.getStringArrayListExtra("stock_list");
73
locoboy

Dans votre intention de réception, vous devez faire:

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

Comme vous l'avez, vous venez de créer une nouvelle intention vide sans extras.

Si vous n'avez qu'un seul extra, vous pouvez le réduire à:

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

J'ai fait cela par Passing ArrayList sous la forme de String .

  1. Ajoutez compile 'com.google.code.gson:gson:2.2.4' dans dependencies block build.gradle

  2. Cliquez sur Synchroniser le projet avec des fichiers Gradle

Cars.Java :

public class Cars {
    public String id, name;
}

FirstActivity.Java

Lorsque vous voulez à passez 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);

Obtenir CarsModel par Fonction :

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

Deuxième activité.Java

Vous devez importer Java.lang.reflect.Type;

on onCreate () pour récupérer 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);
}

J'espère que cela vous fera gagner du temps, je l'ai sauvé.

Terminé

16
Hiren Patel

si vous utilisez Generic Array List with Class au lieu de type spécifique like 

EX:

private ArrayList<Model> aListModel = new ArrayList<Model>();

Ici, Modèle = Classe

Recevoir l'intention comme:

aListModel = (ArrayList<Model>) getIntent().getSerializableExtra(KEY);

DOIT TE SOUVENIR:

Ici, Model-class doit être implémenté comme suit: ModelClass implémente Serializable

11
Dhruv Raval

Supposons que vous deviez passer un arraylist de classe suivante de l’activité en cours à l’activité suivante // classe des objets ceux de l’arraylist// n’oubliez pas d’implémenter la classe à partir de Serializable interface// Serializable signifie convertit l'objet en flux d'octets et aide à transférer cet objet

public class Question implements Serializable {
... 
... 
...
}

dans votre activité actuelle, vous avez probablement une liste de tableaux comme suit

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);

afin d'obtenir l'arraylist dans la prochaine activité 

//get the bundle
Bundle b = getIntent().getExtras();
//getting the arraylist from the key
ArrayList<Question> q = (ArrayList<Question>) b.getSerializable("questions");
3
//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
1
Kishore Reddy
    public class StructMain implements Serializable {
    public  int id;
    public String name;
    public String lastName;
}

ceci mon article. implémenter Serializable et créer ArrayList 

ArrayList<StructMain> items =new ArrayList<>();

et mis en paquet

Bundle bundle=new Bundle();
bundle.putSerializable("test",items);

et créer une nouvelle intention qui met Bundle à l'intention

Intent intent=new Intent(ActivityOne.this,ActivityTwo.class);
intent.putExtras(bundle);
startActivity(intent);

pour recevoir le paquet insérez ce code

Bundle bundle = getIntent().getExtras();
ArrayList<StructMain> item = (ArrayList<StructMain>) bundle.getSerializable("test");
0
javad nasirpur