unbindService()导致应用Crash的问题

简介: /** * Demo描述: * unbindService()导致应用Crash的问题 * 2014年12月4日10:58:52 * * 今天在改Bug时发现一个问题: * unbindService(mConnection);会导...
/**
 * Demo描述:
 * unbindService()导致应用Crash的问题
 * 2014年12月4日10:58:52
 * 
 * 今天在改Bug时发现一个问题:
 * unbindService(mConnection);会导致Crash
 * 
 * 原因:
 * 在Activity中绑定Service时候执行的是:
 * getApplicationContext().bindService(intent, mConnection,BIND_AUTO_CREATE);
 * 但是在Activity中解绑定的时候执行的是:
 * unbindService(mConnection);
 * 即绑定和解绑定的方式不一致导致了Crash.
 * 
 * 所以在解绑定时修改为:
 * getApplicationContext().unbindService(mConnection);
 * 
 * 
 */

相关文章
|
2月前
|
Linux
crash命令 —— runq
crash命令 —— runq
|
2月前
crash命令 —— sym
crash命令 —— sym
|
2月前
|
分布式计算 关系型数据库 Ruby
crash命令 —— rd
crash命令 —— rd
|
2月前
crash命令 —— p
crash命令 —— p
|
2月前
crash命令 —— ptob/btop
crash命令 —— ptob/btop
|
2月前
crash命令 —— kmem
crash命令 —— kmem
|
2月前
crash命令 —— vtop
crash命令 —— vtop
|
2月前
crash命令 —— ptov
crash命令 —— ptov
|
2月前
crash命令 —— waitq
crash命令 —— waitq
|
2月前
crash —— 获取cpuinfo信息
crash —— 获取cpuinfo信息