AbsoluteLayout – Android Layout Tutorial Series-5/5
Introduction of AbsoluteLayout AbsoluteLayout An Absolute Layout lets you specify exact locations (x/y coordinates) of its children. Absolute layouts are less flexible and harder to maintain than other types of layouts without…
TableLayout – Android Layout Tutorial Series-4/5
Introduction of TableLayout TableLayout A layout that arranges its children into rows and columns. Each layout has a set of attributes which define the visual properties of that layout. Among them some…
FrameLayout – Android Layout Tutorial Series-3/5
Introduction to FrameLayout FrameLayout : is designed to block out an area on the screen to display a single item. Generally, FrameLayout should be used to hold a single child view, because…
RelativeLayout – Android Layout Tutorial Series-2/5
Introduction of RelativeLayout Android RelativeLayout enables you to specify how child views are positioned relative to each other or to the parent. Each layout has a set of attributes which define…
LinearLayout – Android Layout Tutorial Series-1/5
Introduction of Android Layout Tutorial : LinearLayout : A Layout that arranges its children in a single column or a single row either Horizontally or Vertically using orientation method. However the Horizontal…
Layouts of Android – Android Layout Tutorial Series
Welcome to Android Application Development !!! From Today, i am going to write the tutorials which will help for the beginners to understand the basic functionality of ANDROID DEVELOPMENT. Here…
Android Manifest File
What is Android Manifest File The Android manifest file can be called as central manager of whole Android Application. ADT provides an inbuilt editor which organizes the manifest file. Editor contains…