4. It provides an environment for executing script languages
Correct Answer : Get Lastest Questions and Answer : Explanation: AIDL (Android Interface Definition Language) is similar to other IDLs you might have worked with. It allows you to define the programming interface that both the client and service agree upon in order to communicate with each other using interprocess communication (IPC). On Android, one process cannot normally access the memory of another process. So to talk, they need to decompose their objects into primitives that the operating system can understand, and marshall the objects across that boundary for you. The code to do that marshalling is tedious to write, so Android handles it for you with AIDL.
Question : Which of these is the incorrect explanation of ProgressDialog?
1. ProgressDialog inherits from the AlertDialog class.
2. ProgressDialog can be set as 2 types of style: STYLEJHORIZONTAL and STYLE_SPINNER.
4. ProgressDialog can be freely configured to use a Drawable class to display as its progress bar.
Correct Answer : Get Lastest Questions and Answer : Explanation: Progress dialogs are very commonly used components in all User Interfaces, when you want to display the progress of a task that is taking up a lot of time, for example a file or an Image download. In this tutorial will create a ProgressDialog to let the user know the progress and a status of a simulated Image download activity. We will demonstrate both the Ring and the Bar style of the ProgressDialog component, as well as the use of special tools like Handler to update the value ( progress...) of the bar format.
Question : Which of these is the correct function of Traceview?
1. Displays a graphical task execution log.
2. Displays graphically a memory acquisition and release log
Correct Answer : Get Lastest Questions and Answer : Explanation: Traceview is a graphical viewer for execution logs saved by your application. Traceview can help you debug your application and profile its performance.