正試圖將一個arrylist從一個意圖傳遞給另一個意圖。 我的代碼如下:將arraylist從一個意圖傳遞到另一個
intent.putExtra("near_places", nearPlaces);
intent.putExtra("nearby", nearbylist);
,並在新的意圖我這樣做:
nearPlaces = (PlacesList) extras.getSerializable("near_places");
nearbylist = (ArrayList<FsqVenue>)extras.getArrayList("nearby");
的FIRAT,專門的代碼是正確的,但第二個它爲我的錯誤,其中fsqVenue是一個類
請幫我
閱讀上Parcelables並:http://developer.android.com/reference/android/os/ Parcelable.html – Phil