layout

Android Layouts

November 8, 2018 admin 3

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”     […]

699e9e1c 770f 4819 85c5 371a21e6946c

User Interfaces-Basics of UI Design

November 6, 2018 admin 121

 All user interface elements in an Android app are built using View and ViewGroup objects. View An object that draws something on the screen that the user can interact with. ViewGroup An object that holds other View(and ViewGroup)  You can use two ways to creating Views Dynamically Add By Coding         […]