【Android】远程服务(Remote|【Android】远程服务(Remote Service)的使用

【【Android】远程服务(Remote|【Android】远程服务(Remote Service)的使用】QQ交流群:668524118kotlin中文学习交流
1.远程服务简介
什么是远程服务
远程服务(Remote Service)也被称之为独立进程,它不受其它进程影响,可以为其它应用程序提供调用的接口——实际上就是进程间通信IPC(Inter-Process Communication),Android提供了AIDL(Android Interface Definition Language,接口描述语言)工具来帮助进程间接口的建立。
在Android中,不同的应用属于不同的进程(Process),一个进程不能访问其它进程的存储(可以通过ContentProvider实现,如:通讯录的读取)。
远程服务的适用场景
一般适用于为其它应用程序提供公共服务的Service,这种Service即为系统常驻的Service(如:天气服务等)。
远程服务的优缺点
优点
1.远程服务有自己的独立进程,不会受到其它进程的影响;
2.可以被其它进程复用,提供公共服务;
3.具有很高的灵活性。
缺点
相对普通服务,占用系统资源较多,使用AIDL进行IPC也相对麻烦。
2.远程服务的创建
定义AIDL接口
通过AIDL文件定义服务(Service)向客户端(Client)提供的接口,我们需要在对应的目录下添加一个后缀为.aidl的文件(注意,不是.java),IMyAidlInterface.aidl文件内容如下:
packagecom.zihao.remoteservice.server; interfaceIMyAidlInterface{StringgetMessage(); }
注:如果服务端与客户端不在同一App上,需要在客户端、服务端两侧都建立该aidl文件。
新建Remote Service
在远程服务中,通过Service的onBind(),在客户端与服务端建立连接时,用来传递Stub(存根)对象。
// 远程服务示例publicclassRemoteServiceextendsService{publicRemoteService(){}@OverridepublicIBinderonBind(Intent intent){returnstub; // 在客户端连接服务端时,Stub通过ServiceConnection传递到客户端}// 实现接口中暴露给客户端的Stub--Stub继承自Binder,它实现了IBinder接口privateIMyAidlInterface.Stub stub =newIMyAidlInterface.Stub(){// 实现了AIDL文件中定义的方法@OverridepublicStringgetMessage()throwsRemoteException{// 在这里我们只是用来模拟调用效果,因此随便反馈值给客户端return"Remote Service方法调用成功"; }}; }
同时,在AndroidManifest.xml中对Remote Service进行如下配置:

如果客户端与服务端在同个App中,AndroidManifest.xml中设置Remote Service的andorid:process属性时,如果被设置的进程名是以一个冒号(:)开头的,则这个新的进程对于这个应用来说是私有的,当它被需要或者这个服务需要在新进程中运行的时候,这个新进程将会被创建。如果这个进程的名字是以小写字符开头的,则这个服务将运行在一个以这个名字命名的全局的进程中,当然前提是它有相应的权限。这将允许在不同应用中的各种组件可以共享一个进程,从而减少资源的占用。
3.客户端调用远程服务接口
在客户端中建立与Remote Service的连接,获取Stub,然后调用Remote Service提供的方法来获取对应数据。
publicclassMainActivityextendsAppCompatActivity{privateIMyAidlInterface iMyAidlInterface; // 定义接口变量privateServiceConnection connection; @OverrideprotectedvoidonCreate(Bundle savedInstanceState){super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); bindRemoteService(); }privatevoidbindRemoteService(){Intent intentService =newIntent(); intentService.setClassName(this,"com.zihao.remoteservice.RemoteService"); connection =newServiceConnection() {@OverridepublicvoidonServiceConnected(ComponentName componentName,IBinder iBinder){// 从连接中获取Stub对象iMyAidlInterface = IMyAidlInterface.Stub.asInterface(iBinder); // 调用Remote Service提供的方法try{Log.d("MainActivity","获取到消息:"+ iMyAidlInterface.getMessage()); }catch(RemoteException e) {e.printStackTrace(); }}@OverridepublicvoidonServiceDisconnected(ComponentName componentName){// 断开连接iMyAidlInterface =null; }}; bindService(intentService, connection, Context.BIND_AUTO_CREATE); }@OverrideprotectedvoidonDestroy(){super.onDestroy(); if(connection !=null)unbindService(connection); // 解除绑定}}
【Android】远程服务(Remote|【Android】远程服务(Remote Service)的使用
文章图片
log.png
【Android】远程服务(Remote|【Android】远程服务(Remote Service)的使用
文章图片
通信示意图.png
4.拓展阅读
Android:关于声明文件中android:process属性说明
【Android】Service那点事儿
【Android】Service前台服务的使用
转自:https://www.jianshu.com/p/4a83becd758e

    推荐阅读