Tuesday, February 18, 2014

Android SDK Layouts

LinearLayout :-


A layout that arranges its children in a single row.

RelativeLayout :-


A layout where the positions of the children can be described in relation to each other or to the parent.

FrameLayout :-


This layout is designed to block out an area on the screen to display a single item. You can add multiple children to a FrameLayout, but all children are pegged to the upper left of the screen. Children are drawn in a stack, with the most recently added child at the top of the stack.This layout is commonly used as a way to lay out views in an absolute position.

TableLayout :-


A layout that arranges its children into rows and columns.

No comments:

Post a Comment