Send not serializable data to new Activity
问题 I have not serializable data which I must sent to other Activity . I try to use Intent , but it's impossible. Intent intent = new Intent(v.getContext(), UserDetailActivity.class); intent.putExtra("class", user); v.getContext().startActivity(intent); How can I send the data from previous Activity to new Activity ? 回答1: I don't think you can do this bacause the ParseUser needs to implement either Parcelable or Serializable. You probably can't modify the class so this is what you can do: Create