I made a custom view which is used in several Fragments of an viewpager.
The view is always stored as a field of the Fragment. I inflate the layout in the constructor and everything works fine flipping through the pages. Because always the next Fragment is created the view shows up without any problem. But if I go back a destroyed View of a Fragment is recreated and it gives me an error, because I still use the same custom view, which isn't inflated, because the constructor isn't called.
So, when do I have to inflate my layout of the custom view? I don't think code would clear anything up, but I can deliver if needed.