Android Layouts
A generic ViewGroup that defines a structure for the views it contains. 1.Linear Layout 2.Relative Layout 3.Table Layout 4.List View 5.Grid View 6.Web View Linear Layout Child Views are arranged in a horizontal or vertical row. <LinearLayout android:layout_width=”match_parent” android:layout_height=”wrap_content” android:background=”@color/bg” android:clipToPadding=”false” android:gravity=”center” […]