博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
绑定服务时什么时候调用onRebind
阅读量:5934 次
发布时间:2019-06-19

本文共 3503 字,大约阅读时间需要 11 分钟。

Serivce中onRebind被调用的时机非常特别,想知道什么时候onRebind被调用,能够接以下的次序来学习。最后自然就明确了!

1. 首先要知道。同一个服务既可能被启动也能够被绑定;

2. Service中onRebind方法被调用。仅仅要符合两个必要条件即可

    (1)服务中onUnBind方法返回值为true

    (2)服务对象被解绑后没有被销毁。之后再次被绑定

。以下举例说明:

    例1:同一个Activity对象

    先自启动服务(onCreate, onStartCommand);再绑定服务(onBind); 再解除绑定服务(onUnBind)(因为服务被启动过,所以Service中onDestroy不会被调用);再绑定服务, 这次绑定的服务对象是之前已经创建好的,所以这次绑定服务时就会调用onReBind方法了。而且本次不会调用onBind方法。

   例2:不是同一个Activity对象 

        打开项目,启动MainActivity, 在Activity中启动服务(onCreate, onStartCommand),再绑定服务(onBind); 再解除绑定服务(onUnBind); 再接返回键销毁MainActivity对象(onUnBind);再打开项目启动MainActivity;再绑定服务,这次绑定服务时会调用onReBind方法

 

 

代码演示样例:

activity_main.xml文件

LocalService.java文件

package com.qf.act;import android.app.Service;import android.content.Intent;import android.os.Binder;import android.os.IBinder;import android.util.Log;public class LocalService extends Service {	private static String LOG = "LocalService";	private int count = 0;	private IBinder binder = new MyIbinder();	@Override	public IBinder onBind(Intent intent) {		Log.e(LOG, "onBind");		return this.binder;	}	@Override	public boolean onUnbind(Intent intent) {		Log.e(LOG, "onUnBind");		return true;	}	@Override	public void onRebind(Intent intent) {		super.onRebind(intent);		Log.e(LOG, "onRebind");	}	@Override	public void onCreate() {		new Thread() {			public void run() {				Log.e(LOG, "onCreate");				for (int i = 0; i < 100; i++) {					count++;					try {						Thread.sleep(1000);					} catch (InterruptedException e) {						e.printStackTrace();					}				}			}		}.start();		super.onCreate();	}	public class MyIbinder extends Binder {		public int getCount() {			return LocalService.this.getCount();		}	}	public int getCount() {		return this.count;	}	@Override	public void onDestroy() {		Log.e(LOG, "onDestroy");		super.onDestroy();	}}

MainActivity.java文件

package com.qf.act;import com.qf.act.LocalService.MyIbinder;import android.app.Activity;import android.app.Service;import android.content.ComponentName;import android.content.Intent;import android.content.ServiceConnection;import android.os.Bundle;import android.os.IBinder;import android.util.Log;import android.view.View;import android.widget.Toast;public class MainActivity extends Activity {	private boolean isBind = false;	private LocalService.MyIbinder binder = null;    @Override    protected void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setContentView(R.layout.activity_main);    }    public void work(View v) {    	Intent intent = new Intent();    	intent.setClass(this, LocalService.class);    	switch (v.getId()) {    	case R.id.start:    		this.startService(intent);    		break;    	case R.id.stop:    		this.stopService(intent);    		break;		case R.id.bind:			this.bindService(intent, conn, Service.BIND_AUTO_CREATE);			break;		case R.id.unbind:			if(isBind == true)			{				unbindService(conn);				isBind = false;			}			break;		case R.id.call:			if(this.binder == null) 				return;			int count = this.binder.getCount();			Toast.makeText(this, ""+count, 1).show();			break;		}    }    private ServiceConnection conn = new ServiceConnection() {		@Override		public void onServiceDisconnected(ComponentName name) {			Log.e("", "onServiceDisconnected");		}		@Override		public void onServiceConnected(ComponentName name, IBinder service) {			binder = (MyIbinder) service;			isBind = true;		}	};}

 

操作演示样例:

     1.点击button  启动服务

       日志信息:       onCreate

    2.  点击button  bind

       日志信息:    onBind

    3.点击button  unbind

        日志信息:   onUnBind

    4.点击button  bind

        日志信息:  onReBind

 

你可能感兴趣的文章
局域网内的机器不能ping通虚拟机,但是虚拟机可以ping通局域网的机器
查看>>
django中将model转换为dict的方法
查看>>
最完美解决Nginx部署ThinkPHP项目的办法
查看>>
容器网络——从CNI到Calico
查看>>
《性能测试二三谈》系列
查看>>
在Winform开发框架中使用DevExpress的内置图标资源
查看>>
点评cat系列-应用集成
查看>>
.netcore使用SocketAsyncEventArgs Pool需要注意!
查看>>
【转】Java中的static关键字解析
查看>>
Asp.NetCore程序发布到CentOs(含安装部署netcore)--最佳实践
查看>>
linux下ls -l命令(即ll命令)查看文件的显示结果分析
查看>>
web开发的跨域问题详解
查看>>
【转】SQLServer 行列互换
查看>>
sim300_at命令.doc
查看>>
STL练习程序(String...)
查看>>
Boost练习程序(强制转换)
查看>>
敏捷个人:做老师的荣幸
查看>>
C#正则表达式编程(四):正则表达式
查看>>
C# 正则表达式替换制定关键词后面的所有内容
查看>>
vss中项目与服务器断开绑定之后进行重新绑定得方法
查看>>