我想將ArrayList從一個活動傳遞給另一個活動。 我發現這個鏈接pass arraylist from one activity to other有用。將整個ArrayList <String>從一個活動傳遞到另一個活動android
但是,當我使用
ArrayList<String> hyperlinks = new ArrayList<String>();
...
Intent myIntent=new Intent(Player.this,VideoActivity.class);
Bundle mBundle = new Bundle();
mBundle.putStringArrayListExtra("hyperlinks", hyperlinks);
//mBundle.putString("filePath", hyperlinks.get(0));
myIntent.putExtras(mBundle);
Player.this.startActivity(myIntent);
然後我在收到錯誤mBundle.putStringArrayListExtra, 話說方法putStringArrayListExtra(字符串,ArrayList中)是未定義的類型捆綁
請指導我如何做到這一點?
謝謝
請閱讀套件,意圖DOC – Blackbelt
它之前http://stackoverflow.com/questions/4029969/problems-with-putstringarraylistextra-in-已回答android –
謝謝Gaurav ... – Vishal