zoukankan      html  css  js  c++  java
  • (原)android系统下绑定Server的时候报MainActivity has leaked ServiceConnection的错误

    今天在android系统下根据官方的demo代码,我们需要启动一个服务,并绑定,但在程序启动以后,老是报错:
     
    Activity MainActivity has leaked ServiceConnection CameraUtil$ServiceBinder@38fe0435 that was originally bound here
    android.app.ServiceConnectionLeaked: Activity MainActivity has leaked ServiceConnection CameraUtil$ServiceBinder@38fe0435 that was originally bound here
                                                                                       
    报错信息如上,通过百度得知,出现这种MainActivity has leaked ServiceConnection,xxx was originally bound here原因,很多人说产生该异常的原因是在activity销毁的时候,没有调用unbindService。
    于是我就在Activity的destory里面加上unbindService的代码,发现还是报错,因为其实我们在onstop里面已经加了unbindService,所以这个不是我们的导致该报错的主要原因。
     
    后面经过几番查找,原来是因为我对程序中的需要启动和绑定的Server没有在AndroidManifest.xml中进行注册,于是加上注册代码就OK。
     
    转载请注明出处:http://www.cnblogs.com/lihaiping/p/6120528.html
  • 相关阅读:
    redis集群搭建
    redis状态查看
    redis动态修改参数配置
    redis的info
    redis安装配置
    redis命令总结
    rabbitmq安装
    怎么把U盘启动改为硬盘启动(适用于U盘安装系统时)
    监控宝篇之一(快速入门)
    raid详解
  • 原文地址:https://www.cnblogs.com/lihaiping/p/6120528.html
Copyright © 2011-2022 走看看