Posts

Showing posts from June, 2022

Types of layout in Android

Image
There are numer of layouts provide by android,android application developer used different layout to give different look to application. Layout basically refers to the arrangement of elements on a page these elements are likely to be images, texts or styles. These layouts can have various widgets like buttons, labels, textboxes, and many others. Sr.No Description 1 Linear Layout LinearLayout is a view group that aligns all children in a single direction, vertically or horizontally. 2 Relative Layout RelativeLayout is a view group that displays child views in relative positions. 3 Absolute Layout AbsoluteLayout enables you to specify the exact location of its children. 4 Table Layout TableLayout is a view that groups views into rows and columns. 5 Frame Layout The FrameLayout is a placeholder on screen that you can use to display a single view. 6 Grid View GridView is a ViewGroup that displays items in a two-dimensional, scrollable grid. 7 List View ListView is a view group that display...