服务端怎样暴露IBinder接口对象

Posted jhcelue

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了服务端怎样暴露IBinder接口对象相关的知识,希望对你有一定的参考价值。

服务端怎样暴露IBinder接口对象:

package com.example.mydownload;

import android.app.Service;
import android.content.Intent;
import android.os.Binder;
import android.os.IBinder;
import android.util.Log;

//实现接口中的方法
	 
public class MyService extends Service {
	//接口对象
	IBinder mybBinder = new MyBinder();
	
	class MyBinder extends Binder{
		public String helloWorld(String name){
			return name;
		}
	}
	
	@Override
	public void onCreate() {
		Log.e("log", "onCreate");
		super.onCreate();
	}


	@Override
	public void onDestroy() {
		Log.e("log", "onDestroy");
		super.onDestroy();
	}


	@Override
	public int onStartCommand(Intent intent, int flags, int startId) {
		Log.e("log", "onStartCommand");
		return super.onStartCommand(intent, flags, startId);
	}

	
	@Override
	public IBinder onBind(Intent arg0) {
		return mybBinder;
	}

}


client怎样调用接口对象中的方法,晚上再写。

以上是关于服务端怎样暴露IBinder接口对象的主要内容,如果未能解决你的问题,请参考以下文章

adnroid四大组件之Service 绑定服务,数据通信-IBinder

Java 简单的RPC 实现

使用AIDL将接口暴露给客户端

使用Spring框架实现远程服务暴露与调用

通过接口方式调用服务里面的方法

基于Zookeeper与Netty实现的分布式RPC服务