Tutor HuntResources Android Development Resources

Android Terminology

Important Android Terminologies

Date : 10/07/2013

Author Information

Milan

Uploaded by : Milan
Uploaded on : 10/07/2013
Subject : Android Development

This Article introduces the terminology used in Android application development and also provides you more thorough understanding of how Android applications function and interact with one another.

Some of the important terms covered in this article are

(1) Context: The context is the central command center for an Android application. All application-specific functionality can be accessed through the context. (2) Activity: An Android application is a collection of tasks, each of which is called an Activity. Each Activity within an application has a unique task or purpose. (3) Intent: The Android operating system uses an asynchronous messaging mechanism to match task requests with the appropriate Activity. Each request is packaged as an Intent.You can think of each such request as a message stating an intent to do something. (4) Service: Tasks that do not require user interaction can be encapsulated in a service. A service is most useful when the operations are lengthy or need to be done regularly.

This resource was uploaded by: Milan