登录
首页 » Others » 037051

037051

于 2018-04-17 发布 文件大小:134KB
0 119
下载积分: 1 下载次数: 0

代码说明:

说明:  

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • memristor
    两个HP忆阻器的SPICE模型,可以设置P等参数。(Two HP memristor SPICE model parameters can be set P)
    2021-03-22 14:59:17下载
    积分:1
  • Bitmap_Delegate
    Delegate implementing the native methods of android.graphics.Bitmap.
    2013-11-11 10:01:35下载
    积分:1
  • aidl跨进程调用
    这两天在学习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) 以返回实现了接口的对象实例上面的东西真的很官方。。下面结合我的例子做一下学习总结:先开发服务器端1.创建一个aidl文件,可以看提供的源码。创建完成后,eclipse插件自动在gen目录下生成同名字的java文件。里面包含一个Stub抽象类,这个类继承自android.os.Binder,这个类是实现整个远程调用的核心。2.然后创建一个类来继承上面说到的那个Stub抽象类,实现里面的抽象方法。(这些抽象方法是根据aidl文件自动生成的)。3.创建一个自定义Service继承自Service,实现其onBind方法,注意此onBind方法必须返回第二步创建的那个Stub类的子类。然后在xml中声明此service,注意此service的声明必须包含一个action,此action也用于客户端的调用使用。(在下面的客户端开发中会有介绍)。4.创建一个activity,此activity只要实现把service启动了即可。这样服务器端就开发完毕,运行后启动了一个可供远程调用的service。关键还是通过onBind暴露一个Binder给客户端。Binder哪来呢?就是通过aidl文件adt会自动生成一个抽象类Stub继承自Binder,只需要创建一个类实现这个Stub的抽象方法即可。然后开发客户端:1.客户端也需要一个aidl文件,注意客户端的aidl文件的包名必须和服务器端的aidl包名一致,名字也相同。创建完后同样会在gen下生成一个接口。2.创建一个Activity,包含变量ServiceConnection con,实现其onServiceConnected和onServiceDisconnected方法,onServiceConnected方法生成第一步那个接口的实现类的对象。con对象用于在onCreate中绑定service,这个service的action必须为服务器端声明的那个service的配置action。绑定中用到con会执行onServiceConnected方法生成aidl对象iPerson。然后就可以通过iPerson来调用aidl里的任意方法返回服务器的东西。客户端开发完毕。关键点是创建aidl文件自动生成了一个接口,在activity中必须绑定服务程序开启的service,在绑定过程中初始化aidl对象。然后就可用aidl对象调用任意方法了。OK,可以运行看效果了。过程真的很繁琐。。但是好像也只能这样了。最主要的还是服务端onBind暴露,然后客户端bindService得到aidl对象。
    2015-09-07下载
    积分:1
  • ItemManager
    某些情况下,设备的存储区中只能存储16进制数据。此事将汉字存储到该存储区,以及从该存储区取出16进制数据之后,如何显出成汉字,有点麻烦。本代码解决了这个问题。本代码在安卓4.0环境下测试成功。(In some cases, the storage area of the device can store data in hexadecimal. After this the characters stored in the storage area, as well as remove the hex data the storage area, showing how to form characters, a little trouble. This code solves this problem. The code is tested successfully at Andrews 4.0 environment.)
    2015-09-05 14:43:19下载
    积分:1
  • Bus Hound 6.0.1带注册码+中文版使用说明(最新的)
    Bus Hound 6.0 for reading IR remote
    2018-11-30 21:52:41下载
    积分:1
  • HelloLCD
    蓝牙LCD显示部分的原代码,软件需CSR的bluelab进行编译,再加上它的开发板(Bluetooth LCD display part of the original code, the software required CSR bluelab compile, coupled with its development board)
    2007-03-29 22:54:51下载
    积分:1
  • ADC
    NXP lpc1114 ADC测温程序,最小系统开发。测试通过。(NXP lpc1114 ADC measurement procedures, minimum system development. Test.)
    2013-06-24 10:30:29下载
    积分:1
  • andriod
    有关于安卓的景物实例,主要介绍旅游景点的浏览页面。(There are examples on the scene Andrews)
    2020-12-27 16:59:03下载
    积分:1
  • BTBee_Examples_By_EF
    我们都知道Android是现在很流行,尤其是ADK(Android开放配件开发工具包),它允许外部0pen源采用Android系统的硬件连接,通过USB与Android平台的设备在一个特殊的“附件”模式互动。 我们就可以继续工作数周,并尝试组装一些巴塔原型和库之间的通信通过蓝牙和Freaduino ADK的Android和Arduino。 随着谷歌提供的源文件,我们可以提供从现在起板。我们产生一个批处理,你可以购买他们here.We将尽快巴塔版本。 为了使Android和Arduino的易之间的沟通,我们想告诉你一个新的机器人与Arduino和其他类似的议会的互动方式。蓝牙为例。 步骤一:一个Android应用程序,这可能与其他设备通过蓝牙通信。 第二步:Android应用程序由蓝牙蜜蜂连接到Arduino的。 步骤之一(第一部分),我们刚刚作出了一个小应用程序的Android,实现简单的蓝牙连接与Android。(We all know Android is very popular now, especially ADK (Android Open Accessory Development Kit), which allows external 0pen source hardware to connect with Android system by USB and interact with an Android-powered device in a special “accessory” mode. We keep working on it for weeks, and try to assemble some bata prototype and make a library for the communication between Android and Arduino by bluetooth and Freaduino for ADK. With the Google providing source files, we are able to provide this board from now on. We produce a batch, you can purchase them here.We will provide the Bata version as soon as possible. To make the communication between Android and Arduino easy, we would like show you a new way that android interact with Arduino and other similar boards. Bluetooth for example. Step one: Make a APP to Android which could communicate with other devices by bluetooth. Step two: Android APP connect to Arduino by Bluetooth Bee. For step one(Part1), we have just made a little A)
    2011-09-05 11:40:32下载
    积分:1
  • ParsingXML
    android解析从服务器获得的XML文件(parsing xml file for android)
    2012-04-17 19:50:39下载
    积分:1
  • 696518资源总数
  • 104349会员总数
  • 32今日下载