bindservice
上篇是第一种方法,这里主要是第二种context.bindservice()方法
1. 开发步骤
1. 绑定服务
intent intent=new Intent(getBaseContext(),MyService.class);
bindService(intent,connection, Context.BIND_AUTO_CREATE);
2. 解绑服务
unbindService(connection);
首先对于对于bindService()Method,
参数如下:
各个参数解释如下:
1.service:即通过intent指定的服务,与之前第一种方法一致
2.conn:这是ServiceConnection的一个对象,其中有两个 函数,分别是onServiceConnected()和onServiceDisconnected(),用来监听访问者与Service之间的连接情况,当访问者与Service成功连接将回调onServiceConnected函数,当Service进程被crashed or killed(异常终止等)则回调onServiceDisconnected函数。
具体函数为:
ServiceConnection connection=new ServiceConnection() {
@Override
public void onServiceConnected(componentname name, IBinder service) {
// method
}
@Override
public void onServiceDisconnected(ComponentName name) {
// method
}
};
- 3.flag:即绑定时是否自动创建Service,如上参数图所示,0为不自动,BIND_AUTO_CREATE为自动创建
测试demo
MainActivity:
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedinstanceState) {
super.onCreate(savedInstanceState);
setcontentView(R.layout.activity_main);
final Intent intent=new Intent(getBaseContext(),MyService.class);
Button btstart=(Button)findViewById(R.id.button1);
Button btstop=(Button)findViewById(R.id.button2);
Button btbind=(Button)findViewById(R.id.button3);
Button btunbind=(Button)findViewById(R.id.button4);
btstart.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
//启动服务
startService(intent);
}
});
btstop.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
//停止服务
stopService(intent);
}
});
btbind.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
bindService(intent,connection, Context.BIND_AUTO_CREATE);
}
});
btunbind.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
unbindService(connection);
}
});
}//onCreate
ServiceConnection connection=new ServiceConnection() {
@Override
public void onServiceConnected(ComponentName name, IBinder service) {
// method
System.out.println("onServiceConnected");
}
@Override
public void onServiceDisconnected(ComponentName name) {
// method
System.out.println("onServiceDisconnected");
}
};
}
MyService:
public class MyService extends Service {
public MyService() {
}
//绑定时调用
@Override
public IBinder onBind(Intent intent) {
// TODO: Return the communication channel to the service.
System.out.println("Service Binded");
// throw new UnsupportedOperationException("Not yet implemented");
return new Binder();
}
// System.out 用于测试
//创建时调用
public void onCreate(){
super.onCreate();
System.out.println("Service Created");
toast.maketext(this,"Service Created",Toast.LENGTH_LONG).show();
}
//Service 启动时调用
public int onStartcommand(Intent intent,int flags,int startID){
System.out.println("Service Started");
Toast.makeText(this,"Service Started",Toast.LENGTH_LONG).show();
return START_STICKY;
}
//关闭时调用
public void onDestroy(){
super.onDestroy();
System.out.println("Service Destroyed");
Toast.makeText(this,"Service Destroyed",Toast.LENGTH_SHORT).show();
}
//解除绑定时调用
public boolean onUnbind(Intent intent){
System.out.println("Service Unbinded");
return true;
}
}
UI:
测试:
当按下绑定服务:
- 首先自动创建服务(flag那设置的),回调onCreate()函数,
- 之后绑定服务,回调onBind()函数
- 最后回调ServiceConnection里面的onServiceConnection函数
之后按下解绑服务
- 回调服务里面onUnbind()函数
- 之后回调服务里面onDestroy()函数
2. 关于生命周期
在这里可以清晰看到,
startService后,再绑定服务。当解绑服务时候,Service并没有回调onDestroy()函数,
而绑定服务再解绑时,则会调用onDestroy()函数。
这是因为第一种情况,Service是由startService创建的,不是bindService。而第二种情况,则是bindService创建的Service。从这里发现,当bindService时,如果服务已经创建,那么解绑只是解除访问者与Service的绑定,而Service并不会终止。
这里关于生命周期,调用方法不同,周期也不同。
调用startService周期:onCreate()-onStartCommand()-onDestroy()
调用bindService周期:onCreate()-onBind()-Unbind()-onDestroy()
相关链接
Android-服务Service(1)-介绍及startService调用
Android-服务Service(2)-bind绑定Service及两种生命周期
Android-服务Service(3)-IntentService
相关阅读
淘宝助理提示“Remote Service Error” 错误
问题:淘宝助理提示“Remote Service Error” 错误。 装修宅回答:登陆您的网店,点开正在出售的宝贝,你会发觉你上传不上去的
一、WebService是什么WebService是一种跨语言跨平台的远程调用技术。所谓跨语言跨平台就是说服务端采用java编写,客户端程序则可以
ScheduledExecutorService:多线程任务调度
今天使用Timer实现任务调度时,阿里巴巴Java开发规范提示 多线程并行处理定时任务时,Timer运行多个TimeTask时,只要其中之一没有捕获
WebService是什么鬼?全华班 2018-03-23 14:56:35喜欢就点击上面蓝色字,更多精彩!导读 | 精选一、什么是Web Service1. 什么是Web Ser
Linux下nfs+rpcbind实现服务器之间的文件共享(mount 挂
1、安装nfs和rpcbind 检查自己的电脑是否已经默认安装了nfs和rpcbind: rpm -aq | grep nfs nfs-utils-1.2.3-54.el6.x86_64 nfs4-