public class Expense implements Parcelable, Serializable {
private String _amount, _amountVat, _dateOfExpense, _dateAdded, _datePaid, _expenseDescription;
private Boolean _paid;
private Bitmap _imageBitMap;
public Expense(){
super();
}
This is my class, i read that you cannot store parcelable objects to external storage. Would it work with implementing Serializable by adding it to the class in which i have done ? I am not too sure on how to implement the save and load in this class either. I have been looking at other questions on here but I can't seem interpret them to apply to my application.