Google News
logo
Android - Interview Questions
What is AIDL?
In the Android platform, there are remote methods that facilitate the use of methods from one program to another. To create and implement the remote methods the first step is to define the communication interface in AIDL.
 
AIDL stands for Android Interface Definition Language. It facilitates communication between the client and the service. It also communicates the information through inter-process communication.
 
For communication between processes, the data is broken down into chunks which are easily understandable by the Android platform.
Advertisement