Android Tutorial
Android Core Building Blocks
An android component is simply a piece of code that has a well defined life cycle e.g. Activity, Receiver, Service etc. The core building blocks…
Screen Orientation
The screenOrientation is the attribute of activity element. The orientation of android activity can be portrait, landscape, sensor, unspecified etc. You need to define it…
Hide Title Bar
In this example, we are going to explain how to hide the title bar and how to display content in full screen mode. The requestWindowFeature(Window.FEATURE_NO_TITLE)…
AndroidManifest.xml
The AndroidManifest.xml file contains information of your package, including components of the application such as activities, services, broadcast receivers, content providers etc. It performs some…
Internal Details
Here, we are going to learn the internal details or working of hello android example. Android application contains different components such as java source code,…
Hello Android Example
In this page, you will know how to create the simple hello android application. We are creating the simple example of android using the Eclipse…
Setup Eclipse
In this page, you will learn what softwares are required for running an android application on eclipse IDE. Here, you will be able to learn…
Install Android
Android supports java, c++, c# etc. language to develop android applications. Java is the officially supported language for android. All the android examples of this…