Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
672 views
in Technique[技术] by (71.8m points)

arraylist - android.os.Parcel readArrayList - OutOfMemoryError: failed to allocate byte allocation with free bytes and MB until OOM

OutOfMemoryError: failed to allocate byte allocation with free bytes and MB until OOM

I got this error while using readArrayList of class android.os.Parcel

protected LineDisplay(Parcel in){
     List<ClassA> classAList = in.readArrayList(ClassA.class.getClassLoader());
}
// ClassA - just small Class implementing Serializable. It contains some String variables. 

From other thread, usually it is caused by not enough memory to upload image.
But in my case, there is no image upload.

so anyone know the reason and solution ?

question from:https://stackoverflow.com/questions/65889266/android-os-parcel-readarraylist-outofmemoryerror-failed-to-allocate-byte-allo

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...