Bundle bundle = new Bundle();
bundle.putParcelableArrayList("countiesof",
(ArrayList<? extends Parcelable>) jsonDataList);
Intent intent = new Intent(SplashActivity.this, HomeActivty.class);
intent.putExtra("mycountries", jsonDataList);
startActivity(intent);
現在,我想將arraylist從一個傳遞給另一個活動。如何發送和接收ArrayList從一個活動到Android中的另一個活動?
看到http://stackoverflow.com/questions/21250339/how-to-pass-arraylistcustomeobject-from-one-activity-to-another/21250450#21250450 –
什麼樣的對象你存儲在jsonDataList?他們是否可以登錄? –
您的數據列表設計的內容和方式?請顯示您想要傳遞哪個數組列表? – GrIsHu