java.lang.classcastexception: java.util.hashmap cannot be cast to android.os.parcelable code example
Example: java.lang.classcastexception: java.util.hashmap cannot be cast to android.os.parcelable
public OneNote(){
super();
this.put("title", "No Title");
this.put("body", "No Body");
this.put("date", "No Date");
}
public OneNote(String title, String body, String date){
super();
this.put("title", title);
this.put("body", body);
this.put("date", date);
}
[...]