インテントを使用して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");
受信インテントでは、以下を行う必要があります。
Intent i = getIntent();
stock_list = i.getStringArrayListExtra("stock_list");
あなたがそれを持っている方法では、余分なものなしで新しい空のインテントを作成しました。
エキストラが1つしかない場合は、これを次のように要約できます。
stock_list = getIntent().getStringArrayListExtra("stock_list");
私はこれをStringの形式でPassing ArrayListで行いました。
依存関係ブロックbuild.gradleにcompile 'com.google.code.gson:gson:2.2.4'
を追加します。
クリック on Gradleファイルとプロジェクトを同期
Cars.Java:
public class Cars {
public String id, name;
}
want to passArrayListの場合:
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 by 関数:
private Cars getCarModel(String id, String name){
Cars cars = new Cars();
cars.id = id;
cars.name = name;
return cars;
}
Java.lang.reflect.Type
をインポートする必要があります。
on 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);
}
これが時間を節約することを願って、私はそれを保存しました。
完了
特定のタイプの代わりにGeneric Array ListとClassを使用する場合
EX:
private ArrayList<Model> aListModel = new ArrayList<Model>();
ここでは、モデル=クラス
次のようなインテントを受け取る:
aListModel = (ArrayList<Model>) getIntent().getSerializableExtra(KEY);
覚えておく必要があります:
ここで、Model-classは次のように実装する必要があります。ModelClassはSerializableを実装します
次のクラスのarraylistを現在のアクティビティから次のアクティビティに渡す必要があると仮定します// arraylist内のオブジェクトのクラス// 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);
次のアクティビティ内で配列リストを取得するため
//get the bundle
Bundle b = getIntent().getExtras();
//getting the arraylist from the key
ArrayList<Question> q = (ArrayList<Question>) b.getSerializable("questions");
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");
//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