android的 AIDL 例子

时间:2016-05-30 10:19:13
【文件属性】:

文件名称:android的 AIDL 例子

文件大小:126KB

文件格式:ZIP

更新时间:2016-05-30 10:19:13

android aidl

public class IPersonImpl extends IPerson.Stub{ // ������������ private int age; private String name; @Override // ��ʾname��age public String display() throws RemoteException { return "name: "+this.name+"; age: "+this.age; } @Override // ����age public synchronized void setAge(int age) throws RemoteException { this.age = age; } @Override // ����name public void setName(String name) throws RemoteException { this.name = name; } }


【文件预览】:
RemoteServerTest
----.project(852B)
----project.properties(445B)
----src()
--------com()
----AndroidManifest.xml(894B)
----res()
--------drawable()
--------layout()
--------values()
----assets()
----gen()
--------com()
----.classpath(288B)
----bin()
--------resources.ap_(5KB)
--------RemoteServerTest.apk(9KB)
--------Chapter07_Service_Remote.apk(10KB)
--------classes()
--------res()
--------classes.dex(6KB)
RemoteClientTest
----.project(852B)
----project.properties(360B)
----proguard.cfg(1KB)
----src()
--------com()
----AndroidManifest.xml(722B)
----res()
--------drawable-ldpi()
--------drawable-hdpi()
--------drawable-mdpi()
--------layout()
--------values()
----assets()
----gen()
--------com()
----.classpath(364B)
----bin()
--------resources.ap_(10KB)
--------RemoteClientTest.apk(16KB)
--------classes()
--------res()
--------RemoteTest.apk(16KB)
--------classes.dex(7KB)

网友评论

  • 不错的例子,很容易理解。
  • 不错的例子
  • 例子写的不错
  • 例子写的不错,不过要加上详细点的注释就更好了