I am developing an application for android 3.0 honeycomb and I wanted to understand the memory management in honeycomb. My application is actually a book & for each chapter we have these html-pages which we load in web view and these pages are not rendered from server but they are kept in assets folder. So at the end we have a lot of html files and images in assets folder.
Now the problem is that when we change the orientation of device the application crashes with OutOfMemoryException
. Is this happening because of large size of the html or is it something else? Can this problem be solved if we had smaller sized html files?