Saving/Restoring custom ArrayList on Android screen rotate?
问题 I have a custom ArrayList of MovieItems that I want to save and restore on screen rotation. I checked out this post - How to save custom ArrayList on Android screen rotate? - and implemented and adapted some of the codes but the saving and restoring don't seem to be working for me. 1) Saving the ArrayList: public List<MovieItem> mItems = new ArrayList<>(); @Override public void onSaveInstanceState(Bundle outState) { outState.putParcelableArrayList(MOVIE_KEY, (ArrayList<? extends Parcelable>)