Frage

I'm building an android app but i get crashes when i rotate dialogs because i've not implemented the SaveInstanceState(). To save and restore simple objects like strings and primitives seems pritty straight forward. But I would also like to save some more complex objects like Context, AttributSet and some listeners? How do I handle that? To me they do not really seem to fit in a Bundle. Help would be much appreciated :)

War es hilfreich?

Lösung

Try this way

<activity
            android:name="yourActivityInwhichCallingDialog"
            android:configChanges="keyboardHidden|orientation|screenSize"
 />
Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top