Android Activity Life Cycle

An Activity represents a single screen with a user interface like a form or page in web designing. Android applications can have more than one activity. In fact, more complex application usually have one activity for each UI screen implementation.

Read More

Android Application Process Priorities

Android Application Process priority is also affected by inter process dependencies; if an application has a dependency on a Service or Content Provider supplied by a second application, the secondary application will have at least as high a priority as the application it supports.

Read More

How to create new project in Android?

The quickest way to get to know Android Studio is to use it to develop an app. We’ll start with a variation on the “Hello, World” application: a little mobile app that displays a “Welcome to Android” message. Starting a new project Step 1: Start Android Studio and Click on “Start a New Android Studio Project”. This will first check all your settings and tools. If any settings or tools are missing it will show you to correct it. After that it will prompt to create a new project. Good…

Read More

Android Emulators(AVD) Setup -Step by Step

What is Android Emulator or AVD? The Android Emulator or AVD (Android Virtual Device) that helps you to simulates Android devices on your computer so that you can test your application on a variety of devices and Android API levels without needing to have each physical device. The emulator provides almost all of the capabilities of a real Android device.  How to create and manage virtual devices? To setup the AVD, follow the following steps: Step 1: Select Tools > AVD Manager. Click AVD Manager  in the toolbar. Step 2: Click Create Virtual Device,…

Read More