I have an Activity with many, many views (200+) and now I'm separating it into fragments in order to decouple my code a bit. The question is - how does it influence on the performance?
- Let's say I have N views hierarchically layed out in one layout and same amount of views separated in fragments - does it matter in terms of performance?
- When I hide a fragment, hopefully its views are not being drawn? (so I can gain here).
Generally, if you could give me a link to some book / article about fragments performance I'd be very glad (googled all the Internet with no results).