Android Programming Long Questions and AnswersHere in this section of Android Programming Long Questions and Answers,We have listed out some of the important Long Questions with Answers on Android Virtual Device and SDK Manager which will help students to answer it correctly in their University Written Exam.

 

 
Q-1 What is Android Runtime? Also explain Android Virtual Device. OR What is virtual device and SDK manager? Explain.

 

Android runtime (ART)
Android runtime (ART) is the managed runtime used by applications and some system services on Android.

ART and its predecessor Dalvik were originally created specifically for the Android project.

ART as the runtime executes the Dalvik Executable format and Dex bytecode specification.

ART and Dalvik are compatible runtimes running Dex bytecode, so apps developed for Dalvik should work when running with ART

 

ART Features

Here are some of the major features implemented by ART.

Ahead-of-time (AOT) compilation – ART introduces ahead-of-time (AOT) compilation, which can improve app performance. ART also has tighter install-time verification than Dalvik.

 

Improved garbage collection – ART improves garbage collection in several ways:

  1. One GC pause instead of two
  2. Parallelized processing during the remaining GC pause
  3. Lower total GC time
  4. Improved garbage collection ergonomics
  5. Compacting GC to reduce background memory usage and fragmentation

 

Development and debugging improvements

  1. Support for sampling profiler
  2. Support for more debugging features
  3. Improved diagnostic detail in exceptions and crash reports

 

Android Virtual Device (AVD)

An Android Virtual Device (AVD) definition lets you define the characteristics of an Android phone, tablet, Android Wear, or Android TV device that you want to simulate in the Android Emulator.

The AVD Manager helps you easily create and manage AVDs.

 

An AVD contains a hardware profile, system image, storage area, skin, and other properties.

  • Hardware profile-The hardware profile defines the characteristics of a device as shipped from the factory. The AVD Manager comes preloaded with certain hardware profiles, such as Nexus phone devices, and you can define and import hardware profiles as needed. You can override some of the settings in your AVD, if needed
  • System image-The AVD Manager helps you choose a system image for your AVD by providing recommendations. It also lets you download system images, some with add-on libraries, like Google APIs
  • Storage area-The AVD has a dedicated storage area on your development machine. It stores the device user data, such as installed apps and settings, as well as an emulated SD card. If needed, you can use the AVD Manager to wipe user data, so the device has the same data as if it were new.
  • Skin – An emulator skin specifies the appearance of a device. The AVD Manager provides some predefined skins. You can also define your own, or use skins provided by third parties.
  • AVD and app features – Just as with a real device, for apps to use certain features defined in an AVD, such as the camera, it must have the corresponding <uses-feature> setting in the app manifest.

 

Android SDK Manager

The Android Development Toolkit (ADT) Bundle provides the Software Development Kit (SDK) and the emulator system image from the latest platform.

However, you will need other platforms to test your apps on earlier versions of Android.

You can get components for each platform using the Android SDK Manager.

It is a set of development tools used to develop applications for Android platform.

Every time Google releases a new version of Android, a corresponding SDK is also released

To be able to write programs with the latest features, developers must download and install each version’s SDK for the particular phone.

 

The Android SDK includes the following:

  1. Required libraries
  2. Debugger
  3. An emulator
  4. Relevant documentation for the Android application program interfaces (APIs)
  5. Sample source code
  6. Tutorials for the Android OS

 

Share with : Share on Linkedin Share on Twitter Share on WhatsApp Share on Facebook