Skip to main content

ANDROID ARCHITECTURE


1.ANDROID ARCHITECTURE




Linux kernel

At the bottom of the layers is Linux - Linux 2.6 with approximately 115 patches.This provides basic system functions like process management, memory management, device management like camera, keypad, display etc. Also, the kernel handles all the things that Linux is really good at, such as networking and a vast array of device drivers, which take the pain out of interfacing to peripheral hardware.

Libraries

On top of Linux kernel there is a set of libraries including open-source Web browser engine WebKit, well known library libc, SQLite database which is a useful repository for storage and sharing of application data, libraries to play and record audio and video, SSL libraries responsible for Internet security etc.

Android Runtime

This is the third section of the architecture and available on the second layer from the bottom. This section provides a key component called Dalvik Virtual Machine which is a kind of Java Virtual Machine specially designed and optimized for Android.

The Dalvik VM makes use of Linux core features like memory management and
multi-threading, which is intrinsic in the Java language. The Dalvik VM enables
every Android application to run in its own process, with its own instance of the
Dalvik virtual machine.

The Android runtime also provides a set of core libraries which enable Android application developers to write Android applications using standard Java programming language.

Application Framework

The Application Framework layer provides many higher-level services to applications in the form of Java classes. Application developers are allowed to make use of these services in their applications.

Applications

You will find all the Android application at the top layer. You will write your
application to be installed on this layer only. Examples of such applications are
Contacts Books, Browser, Games, etc.


Comments

Popular posts from this blog

APPLICATIONS COMPONENT

2.APPLICATIONS COMPONENT Application components are the essential building blocks of an Android application. These components are loosely coupled by the application manifest file AndroidManifest.xml that describes each component of the application and how they interact. Activities  They dictate the UI and handle the user interaction tothe smartphone screen Services  They handle background processing associated with an application. Broadcast Receivers  They handle communication between Android OS and applications. Content Providers   They handle data and database management issues. Activities An activity represents a single screen with a user interface. For example, an email application might have one activity that shows a list of new emails, another activity to compose an email, and one for reading emails. If an application has more than one activity, then one of them should be marked as the activity that is presented ...

Create Your First Android APP

4.Create Your First Android APP Let's create our first application for Android. You can use the Android Studio and the ADT to Develop the android application. Before that, you have basic knowledge of CORE JAVA and XML and DBMS. In Android, we use the SQLite for DataBase Management. Don't be panic if you are not strong in these languages which are written above it will be fine if you try and learn these intentionally. NOTE: The Concept is same for both Android Studio and the Eclipse ADT, But Now Android Studio Blocked provide the External SDK and the add-on for Eclipse ADT. if you have the previous Version of the ADT then it's ok. Open Android Studio. Under the "Quick Start" menu, select "Start a new Android Studio project." On the "Create New Project" window that opens, name your project "HelloWorld". If you choose to, set the company name as desired*. Note where the project file location is and change it if desire...