Welcome![Sign In][Sign Up]
Location:
Search - aidl

Search list

[androidAIDL

Description: android中操作电话界面的接口,可以控制来电界面和自动接听和自动拒绝-android phone interface, the interface to operate, can control the interface and automatically answer calls and automatically rejected
Platform: | Size: 70656 | Author: 阿里山 | Hits:

[androidAndroid-IPC-AND-AIDL

Description: 介绍Android的IPC及AIDL的资料,是繁体字的,不过可以看明白的-The IPC introduces Android and AIDL the information is complex characters, but can see to understand
Platform: | Size: 246784 | Author: whj | Hits:

[androidCallMonitor2.1

Description: 实现了来电自动监听,对黑名单实行自动挂断,并回复自定义的短信。开发环境是在eclipse中集成了android插件,生成的.apk文件运行环境为android 2.1。-Monitor the incoming number,and end those in the blacklist automatically.And send a SMS to the incoming number.
Platform: | Size: 207872 | Author: 朱俊杰 | Hits:

[androidsources

Description: android 2.2 源码,包括SDK-android 2.2 source
Platform: | Size: 3610624 | Author: 李平 | Hits:

[Communication-Mobilemobile-secctary

Description: 手机秘书,来电防火墙!短信防火墙!手机来点抗骚扰-Secretary phone, calls firewall! SMS firewall! Anti-harassment cell phone to point
Platform: | Size: 1323008 | Author: anyuanchao | Hits:

[androidAIDL

Description: android关于进程间通信的源码,希望对大家有用-android source of inter-process communication, I hope useful
Platform: | Size: 65536 | Author: 杨凡超 | Hits:

[androidaidl

Description: android aidl service
Platform: | Size: 61440 | Author: seven | Hits:

[androidAndroidSource

Description: android系统源码,适合于android高级开发者-android system source code, suitable for advanced android developer
Platform: | Size: 3875840 | Author: 谭竹青 | Hits:

[androidandroid-process-precoding

Description: IPC调用的AIDL的具体说明! 它本质上是Server端和Client端都具有相同的AIDL文件,要位于相同的包下,即package的包名药一样,然后才能正确的通过proxy访问,否 则client与server的aidl文件处于不同package会出错的。-IPC calls AIDL specific instructions! It is essentially a Server side and Client-side have the same AIDL file, to be in the same package, that package as the package name drugs before the right to access through the proxy, or client and the server' s file in a different package will aidl error.
Platform: | Size: 4096 | Author: Tony Zhang | Hits:

[androidAIDL-simple2

Description: android AIDL 例子 简单易懂-android AIDL
Platform: | Size: 108544 | Author: jilinmo | Hits:

[J2MEPhoneManager

Description: 查询当前手机安装的软件,正在运行的服务,线程。可以查看手机的一些基本信息-Check the current phone software installed, running, thread. You can view some basic information of the phone
Platform: | Size: 372736 | Author: 孙振邦 | Hits:

[androidAIDLDemo

Description: 通过这个例子让我们很清楚的知道aidl的用途-is good
Platform: | Size: 24576 | Author: 磊仔 | Hits:

[JSP/Javaaidl-Cross-process-calls

Description: 这两天在学习aidl跨进程调用,研究了一天终于写出了个helloword……开发aidl跨进程调用,主要分以下步骤:   1.创建.aidl文件-该文件(YourInterface.aidl)定义了客户端可用的方法和数据的接口。   2.在makefile文件中加入.aidl文件-(Eclipse中的ADT插件提供管理功能)Android包括名为AIDL的编译器,位于tools/文件夹。   3.实现接口-AIDL编译器从AIDL接口文件中利用Java语言创建接口,该接口有一个继承的命名为Stub的内部抽象类(并且实现了一些IPC调用的附加方法),要做的就是创建一个继承YourInterface.Stub的类并且实现在.aidl文件中声明的方法。   4. 向客户端公开接口-如果是编写服务,应该继承Service并且重载Service.onBind(Intent) 以返回实现了接口的对象实例 -This two-day learning aidl cross-process calls, research and one day finally wrote helloword to ...... the development of the aidl cross-process calls, mainly consists of the following steps: 1. Created. Aidl file- the file (YourInterface.aidl) defines a client The available methods and data interface. 2 in the makefile. Aidl file- (the Eclipse ADT plugin provides management functions) Android called AIDL compiler tools/folder. 3 interface-AIDL compiler to create an interface from the the AIDL interface file using the Java language, the interface, the naming of a successor for the Stub internal abstract class (and some additional IPC calls) to do is to create a inherit the YourInterface.Stub class in aidl file declared. Open interface to the client- if writing services, should inherit Service and reload Service.onBind (Intent) to return the interface object instance
Platform: | Size: 119808 | Author: hpudn9 | Hits:

[androidaidl

Description: 关于android的IPC通讯AIDL的实例源码,解压即可使用,包含server和client两个工程。-IPC communication AIDL android source code examples, extract can be used, including server and client works.
Platform: | Size: 95232 | Author: 梁杰凯 | Hits:

[JSP/JavaAIDL

Description: aidl进行进程之间的通讯, aidl进行进程之间的通讯-use aidl to communicate between thread
Platform: | Size: 2896896 | Author: zzj | Hits:

[JSPaidl

Description: 这里主要讲解一下服务器端回调客户端的步骤: 1、写一个ITaskCallback.aidl文件,该文件中定义了一些需要服务器端调用的函数接口 2、写一个IMyService.aidl文件,里面加两个接口用于注册和取消ITaskCallback.aidl文件中定义的接口 void registerCallback(ITaskCallback cb) void unregisterCallback(ITaskCallback cb) 3、定义MyService类,该类继承Service,在该类中定义RemoteCallbackList变量,用于注册ITaskCallback对象, 这样服务器端才知道哪些函数可以调用;在该类中还要定义一个MyServiceImpl继承IMyServcie.Stub, 并实现registerCallback()和unregisterCallback()方法。 4、在客户端实现ITaskCallback接口(当然先要把ITaskCallback.aidl文件及其目录copy到客户端工程中)-Here mainly explain the steps the server callback client: 1. Write a ITaskCallback.aidl file that defines some function interface requires a server-side call 2. Write a IMyService.aidl file, which added two interfaces interfaces for registration and cancellation ITaskCallback.aidl defined in the file         void registerCallback (ITaskCallback cb)         void unregisterCallback (ITaskCallback cb) 3, the definition of MyService class that inherits Service, RemoteCallbackList variable in the class definition for registration ITaskCallback objects       Thus the server to know what functions can be invoked also define a MyServiceImpl in the class inheritance IMyServcie.Stub,       And implement registerCallback () and unregisterCallback () method. 4, in the client implementation ITaskCallback interface (of course first put ITaskCallback.aidl file and directory copy to the client project)
Platform: | Size: 96256 | Author: 李里 | Hits:

[androidaidl

Description: aidl脚本编程,通过aidl实现service与activity间的通信。用来传输数据以及序列化。-Aidl script programming, through the Aidl to realize the communication between service and activity. Used to transfer data and serialization.
Platform: | Size: 3353600 | Author: | Hits:

[androidAndroid-aidl-Demo

Description: aidl 使用详解 aidl 使用详解 aidl 使用详解 -aidl Sample Demo,aidl Sample Demo,aidl Sample Demo,aidl Sample Demo,aidl Sample Demo,
Platform: | Size: 1027072 | Author: fanchen | Hits:

[OtherPinyinIME源码

Description: 本功能只是一个安卓的源码,但是还没发用,正在调试中(This a demo about android IME, but aidl is lost, now i am finding it.)
Platform: | Size: 3410944 | Author: 龙da | Hits:

[androidAIDL_Demo

Description: 实现两个不同的android app之间通过AIDL进行通信(Implement two different android apps communication through AIDL.)
Platform: | Size: 2663424 | Author: pazzainter | Hits:
« 12 3 »

CodeBus www.codebus.net