Optimizing Layouts in Android

Inflating layouts is an expensive process; each additional nested layout and included View directly impacts on the performance and responsiveness of your application Redundant Layout Containers Are Redundant A Linear Layout within a Frame Layout, both of which are set to MATCH_PARENT, does nothing but add extra time to inflate. Look for redundant layouts, particularly … Read more