I have created a custom ViewGroup for my app written in Kotlin, specifically a FrameLayout, to which I add multiple child views programmatically. The child views are added depending on user interaction, thus not at the initialisation of the parent view. When changing the screen orientation, the FrameLayout is redrawn without the child views. How can I retain the sate of the FrameLayout, so that the child views are redrawn when the screen orientation is changed?
Furthermore, can the FrameLayout somehow retain the state of the child views (e.g. text in an EditText), or does the child view need to manage its state on its own?
Thanks!
you can solve the issue this way:
<resources> <item name="my_edit_text" type="id"/> </resources>
Set the actual id to your view the following way:
editTextView.id = R.id.my_edit_text