采用bindService(service, conn, flags),而不是 startService(service)启动服务Service时
在关闭Activity时没有释放连接,就会出现 ** has leaked ServiceConnection等错误
即服务连接泄露(因为在关闭Acitivity的时候没有释放链接)
需要在Acitivity销毁时释放连接:
@Override protected void onDestroy() { super.onDestroy();
unbindService(connection); }
热门工具 换一换