Android save array of custom objects
I have a question about saving an arraylist of custom objects. I have a class called notitie: public class Notitie implements Serializable{ private String titel = ""; private String type = ""; private String datum = ""; public void setTitel (String titel){ this.titel = titel; } public String getTitel(){ return titel; } public void setType (String type){ this.type = type; } public String getType(){ return type; } public void setDatum (String datum){ this.datum = datum; } public String getDatum(){ return datum; } } I create some objects of Notitie and add them to my arraylist called notities