首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网络技术 > 网络基础 >

Android AIDL Object兑现步骤

2012-06-26 
Android AIDL Object实现步骤打包的对象类Rect实现android.os.Parcelable接口.创建Rect.aidl填入如下代码:

Android AIDL Object实现步骤

    打包的对象类Rect实现android.os.Parcelable接口.创建Rect.aidl填入如下代码:
    package cn.lx.aidl;import cn.lx.Rect;interface RectService{     cn.lx.Rect intersection(in cn.lx.Rect left,in cn.lx.Rect right);}?
    实现RectService.Stub类中的方法.在Service.onBind(Intent)返回RectService.Stub实现类的实例。

热点排行