What is AIDL?



What is AIDL?..

Answer / maanya

- AIDL is the abbreviation for Android Interface Definition Language. 
- It handles the interface requirements between a client and a service to communicate at the same level through interprocess communication. 
- The process involves breaking down objects into primitives that are Android understandable.

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More Android OS Interview Questions

What can android 7.0 do?

0 Answers  


Which permission needed in order to use mapactivity?

0 Answers  


Why did we open the Android source code?

1 Answers  


What are the steps required to avoid context related memory leaks?

0 Answers  


What is restful api in android?

0 Answers  






how will you display database tables in an activity?

0 Answers  


What onlistitemclick() function used for?

0 Answers  


What is 9 Patch Image? when to use it? in Android?

0 Answers   SkillGun Technologies,


Is it possible to started an application on powerup?

0 Answers  


Is it necessary to update apps on android?

0 Answers  


What is an Application ?

1 Answers  


Under what condition could the code sample below crash your application? How would you modify the code to avoid this potential problem? Explain your answer.     Intent sendIntent = new Intent();     sendIntent.setAction(Intent.ACTION_SEND);     sendIntent.putExtra(Intent.EXTRA_TEXT, textMessage);     sendIntent.setType(HTTP.PLAIN_TEXT_TYPE); // "text/plain" MIME type     startActivity(sendIntent);

0 Answers  


Categories