1. 程式人生 > >解決has leaked ServiceConnection

解決has leaked ServiceConnection 阿新 發佈:2018-11-04

裝載:https://blog.csdn.net/u011057161/article/details/50474677

解決“has leaked ServiceConnection [email protected] that was originally bound here”的錯誤,需要修改AndroidManifest.xml檔案。

配置Map定位許可權和遠端連結機制。不然,就會報下面的錯誤:

[plain]  view plain copy 在CODE上檢視程式碼片 派生到我的程式碼片
  1. has leaked ServiceConnection 
    [email protected]
     that was originally bound here  
  2.     android.app.ServiceConnectionLeaked: Activity XX.XX.XX.XXXXActivity has leaked ServiceConnection [email protected] that was originally bound here  
  3.             at android.app.LoadedApk$ServiceDispatcher.<init>(LoadedApk.java:969)  

        方法:

新增定位許可權:

[html]  view plain copy 在CODE上檢視程式碼片 派生到我的程式碼片
  1. <
    uses-permission android:name="android.permission.BAIDU_LOCATION_SERVICE" />  

        再<application></application>之間新增下面service標籤。

[html]  view plain copy 在CODE上檢視程式碼片 派生到我的程式碼片
  1. <service  
  2.         android:name="com.baidu.location.f"  
  3.         android:enabled="true"  
  4.         android:process=":remote" >  
  5. </service>