Intent mIntent = new Intent(Login.this, PlatformActivity.class);
Bundle bundle = new Bundle();
bundle.putSerializable("user",user);
mIntent.putExtras(bundle);
startActivity(mIntent);
public class User implements Serializable {
private List<UserAccount> userAccountList;
...
...
}
的RuntimeException:Parcelable遇到IOException異常寫入序列化對象(名稱= com.orbis.mobile.User)的Android如何對象的用戶從一個活動傳遞到片段
用戶是不是序列化的,我想知道如何用arrayList傳遞Object。如果用戶沒有設置userAccountList,它可以工作。
List可以被序列化,UserAccount對象拋出異常。 http://stackoverflow.com/a/1387966/2402866 – 2014-10-07 21:54:20
@AlonLevanon發佈你鏈接確認我說什麼。 'List'不是'serializable''ArrayList'。 – Blundell 2014-10-08 07:48:24