Android studio Tools for UI/UX and enhanced performance of app
Introduction While starting an app development,the first and foremost thing to be taken care of is UI/UX (User Experience) .In past three years,while developing apps I've noticed so many times that layouts and UI performance are not being paid attention as equal as we do for code.But a well written layout simply adds to your app performance and easy to maintain as well.In this article,I am gonna cover some tools of android studio provided for layout efficiency and performance we'll also get to know few tips regarding android Layouts and Views. Layouts and Views Layout is basically a container that wraps all the elements that we see on screen.It also handles the arrangement of elements encapsulated.One can also create a custom layout by extending ViewGroup class.Most commonly used layouts are: 1.Linear Layout 2.Relative Layout Relative layout is considered simple and easy to use.But Relative Layout is slow, and Constraint Layout(recently launched by androi...