Вот мое объявление
List lstProfilePicture = new ArrayList ();
Это мой код для вызова другого действия
Intent i = new Intent (LogoActivity.this, MenuActivity.class);
i.putExtra ("Profile", (Serializable) lstProfilePicture);
Это мой Профиль Class
publi c class Profile реализует Serializable {
private Long employeeCode;
private Bitmap employeePicture;
public Profile() {
}
public Profile(Long employeeCode, Bitmap employeePicture) {
this.employeeCode = employeeCode;
this.employeePicture = employeePicture;
}
public Long getEmployeeCode() {
return employeeCode;
}
public void setEmployeeCode(Long employeeCode) {
this.employeeCode = employeeCode;
}
public Bitmap getEmployeePicture() {
return employeePicture;
}
public void setEmployeePicture(Bitmap employeePicture) {
this.employeePicture = employeePicture;
}
}
Вот мое сообщение об ошибке
/ AndroidRuntime: FATAL EXCEPTION: main Process: oras.liv.com.oras, PID: 21484 java .lang.RuntimeException: Parcelable обнаружил исключение IOException, записывающее сериализуемый объект
Как передать с растровым изображением в классе? Есть ли другой способ?