Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How and where to create aidl file in eclipse using android

Tags:

android

I am trying to using remote service in android.can anybody tell how and where to create aidl file in eclipse in android?

Thanks

like image 979
mohan Avatar asked Aug 23 '10 08:08

mohan


2 Answers

Right click the Package name -> New -> File

Provide a filename with the .aidl extension, such as MyServiceInterface.aidl

like image 71
Viken Nokhoudian Avatar answered Sep 26 '22 18:09

Viken Nokhoudian


You have lot of examples available for this topic.

  1. You can refer to API Demos example where in they have implemented a Remote service.

  2. Refer this link.

like image 24
DeRagan Avatar answered Sep 26 '22 18:09

DeRagan