Parcelable encountered IOException writing serializable object getactivity()

前端 未结 12 1856
故里飘歌
故里飘歌 2020-11-29 22:15

so I am getting this in logcat:

java.lang.RuntimeException: Parcelable encountered IOException writing serializable object (name = com.resources.student_list         


        
12条回答
  •  天命终不由人
    2020-11-29 22:21

    the Grade class must also implement Serializable

    public class Grade implements Serializable {
    .....your content....
    }
    

提交回复
热议问题