インテントを介してArrayListを渡す


82

インテントを使用して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;

これは、2番目のアクティビティでリストを取得しようとする場所です。ここで何か問題がありますか?

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

    stock_list = i.getStringArrayListExtra("stock_list");

回答:


105

あなたの受信意図において、あなたはする必要があります:

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

あなたがそれを持っている方法で、あなたは余分なものなしで新しい空のインテントを作成しただけです。

余分なものが1つしかない場合は、これを次のように要約できます。

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

20

私はこれをStringの形式でArrayList渡すことによって行いました 。

  1. 依存関係ブロックbuild.gradleを追加compile 'com.google.code.gson:gson:2.2.4'します。

  2. プロジェクトをGradleファイルと同期するをクリックます

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

これが時間を節約することを願って、私はそれを節約しました。

完了


3
または、CarsモデルクラスにParcelableインターフェイスを実装させ、intent.putParcelableArrayListExtra( "parecelable_list"、carsList);を実行することもできます。carsListはArrayListの<車>のインスタンスである
Noumanハニフ

1
反対票を投じる人は、理由としてコメントを追加する必要があります。
Hiren Patel 2016

3
すでに存在するintent.putStringArrayListExtraintent.getStringArrayListExtraまたはgetSerializableExtra存在するのに、なぜGsonを使用するのでしょうか。そして、Eclipseを使用するとどうなりますか?Gsonライブラリをダウンロードして追加する必要がありますか?
Tushar Monirul 2016年

私の2ビット...その理由でこれに反対票を投じることはできませんが、何度も証明されているので、シリアル化よりもパーセル化をお勧めします-Androidの場合、より効率的で、シリアル化を実行します。
user38337 3219年

13

次のような 特定のタイプではなく、クラスでジェネリック配列リストを使用している場合

例:

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

ここで、モデル=クラス

のような意図を受け取る:

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

覚えておく必要があります:

ここで、Model-classは次のように実装する必要があります 。ModelClassはSerializableを実装します


通常、startActivityForResultの送信インテントのように: Intent intent = new Intent(MainActivity.this, SecondActivity.class); startActivityForResult(intent, aListModel);
Dhruv Raval

5

次のクラスの配列リストを現在のアクティビティから次のアクティビティに渡す必要があるとします//配列リスト内のオブジェクトのクラス// 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");

2
//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

2
    public class StructMain implements Serializable {
    public  int id;
    public String name;
    public String lastName;
}

これは私のアイテムです。Serializableを実装し、ArrayListを作成します

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

バンドルに入れます

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

バンドルをインテントにする新しいインテントを作成します

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

受信バンドルの場合、このコードを挿入します

Bundle bundle = getIntent().getExtras();
ArrayList<StructMain> item = (ArrayList<StructMain>) bundle.getSerializable("test");
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.