140

我正在开发我的第一个 Android 应用程序。我的应用程序中有三个活动,用户经常来回切换。我还有一个远程服务,它处理远程登录连接。应用程序需要绑定到此服务才能发送/接收 telnet 消息。

编辑 感谢 BDLS 提供的信息丰富的回答。bindService()根据您对用作独立函数或 after之间区别的说明,我已经重新编写了我的代码,startService()现在我只在使用后退按钮在活动之间循环时间歇性地收到泄漏错误消息。

我的连接活动有以下onCreate()onDestroy()

/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    /*
     * Initialize the ServiceConnection.  Note that this is the only place startService() is run.
     * It is also the only time bindService is run without dependency on connectStatus.
     */
    conn = new TelnetServiceConnection();
    //start the service which handles telnet
    Intent i = new Intent();
    i.setClassName( "com.wingedvictorydesign.LightfactoryRemote", "com.wingedvictorydesign.LightfactoryRemote.TelnetService" );
    startService(i);
    //bind to the service
    bindService(i, conn, 0);

    setContentView(R.layout.connect);
    setupConnectUI();

}//end OnCreate()

@Override
protected void onDestroy() {
    super.onDestroy();

    //unbind the service and null it out
    if (conn != null) {
        unbindService(conn);
        conn = null;
        }

    if(connectStatus == 0) {
        //stop the service
        Intent i = new Intent();
        i.setClassName( "com.wingedvictorydesign.LightfactoryRemote", "com.wingedvictorydesign.LightfactoryRemote.TelnetService" );
        stopService(i);
        Log.d("LightfactoryRemote", "Connect onDestroy() attempted to stop service");
        }

    Log.d("LightfactoryRemote", "Connect onDestroy()");
    }//end onDestroy()

因此,服务在活动启动时启动,如果没有成功的 telnet 连接,则在活动被销毁时停止(connectStatus == 0)。其他活动仅在成功连接时才绑定到服务(connectStatus == 1保存到共享首选项)。这是他们的onResume()and onDestroy()

@Override
protected void onResume() {
    super.onResume();

    //retrieve the shared preferences file, and grab the connectionStatus out of it.
    SharedPreferences settings = getSharedPreferences(PREFS_NAME, MODE_WORLD_WRITEABLE);
    connectStatus = settings.getInt("connectStatus", 0);

    Log.d("LightfactoryRemote", "Focus onResume with " + connectStatus);

    //if a telnet connection is active, start the service and bind to it
    if (connectStatus == 1) {
        conn = new TelnetServiceConnection();
        Intent i = new Intent();
        i.setClassName("com.wingedvictorydesign.LightfactoryRemote", "com.wingedvictorydesign.LightfactoryRemote.TelnetService");
        bindService(i, conn, 0);
        //TODO write restore texview code
        }//end if
    }//end onResume

@Override
protected void onDestroy() {
    super.onDestroy();
    //unbind the service and null it out.
    if (conn != null) {
        Log.d("LightfactoryRemote", "Focus onDestroy() attempted to unbind service");
        unbindService(conn);
        conn = null;
        }
    Log.d("LightfactoryRemote", "Focus onDestroy()");
    }//end onDestroy()

因此,绑定发生在onResume()它会从连接活动中获取更改的状态,并且在onDestroy()函数中它是未绑定的,如果需要的话。

结束编辑

但是我仍然在切换活动时间歇性地收到内存泄漏错误消息“Activity has leaked ServiceConnection @438030a8 that original bound here”。我究竟做错了什么?

在此先感谢您的任何提示或指示!!!

完整的错误消息如下(来自修改后的代码):

01-02 22:04:26.642: DEBUG/LightfactoryRemote(2024): Focus onStop()
01-02 22:04:26.642: DEBUG/LightfactoryRemote(2024): Focus onDestroy() attempted to unbind service
01-02 22:04:26.642: DEBUG/LightfactoryRemote(2024): Focus onDestroy()
01-02 22:04:26.672: ERROR/ActivityThread(2024): Activity com.wingedvictorydesign.LightfactoryRemote.LightfactoryRemote has leaked ServiceConnection com.wingedvictorydesign.LightfactoryRemote.LightfactoryRemote$TelnetServiceConnection@439e51e8 that was originally bound here
01-02 22:04:26.672: ERROR/ActivityThread(2024): android.app.ServiceConnectionLeaked: Activity com.wingedvictorydesign.LightfactoryRemote.LightfactoryRemote has leaked ServiceConnection com.wingedvictorydesign.LightfactoryRemote.LightfactoryRemote$TelnetServiceConnection@439e51e8 that was originally bound here
01-02 22:04:26.672: ERROR/ActivityThread(2024):     at android.app.ActivityThread$PackageInfo$ServiceDispatcher.<init>(ActivityThread.java:927)
01-02 22:04:26.672: ERROR/ActivityThread(2024):     at android.app.ActivityThread$PackageInfo.getServiceDispatcher(ActivityThread.java:822)
01-02 22:04:26.672: ERROR/ActivityThread(2024):     at android.app.ApplicationContext.bindService(ApplicationContext.java:842)
01-02 22:04:26.672: ERROR/ActivityThread(2024):     at android.content.ContextWrapper.bindService(ContextWrapper.java:319)
01-02 22:04:26.672: ERROR/ActivityThread(2024):     at com.wingedvictorydesign.LightfactoryRemote.LightfactoryRemote.onResume(LightfactoryRemote.java:102)
01-02 22:04:26.672: ERROR/ActivityThread(2024):     at android.app.Instrumentation.callActivityOnResume(Instrumentation.java:1225)
01-02 22:04:26.672: ERROR/ActivityThread(2024):     at android.app.Activity.performResume(Activity.java:3559)
01-02 22:04:26.672: ERROR/ActivityThread(2024):     at android.app.ActivityThread.performResumeActivity(ActivityThread.java:2838)
01-02 22:04:26.672: ERROR/ActivityThread(2024):     at android.app.ActivityThread.handleResumeActivity(ActivityThread.java:2866)
01-02 22:04:26.672: ERROR/ActivityThread(2024):     at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2420)
01-02 22:04:26.672: ERROR/ActivityThread(2024):     at android.app.ActivityThread.access$2100(ActivityThread.java:116)
01-02 22:04:26.672: ERROR/ActivityThread(2024):     at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1794)
01-02 22:04:26.672: ERROR/ActivityThread(2024):     at android.os.Handler.dispatchMessage(Handler.java:99)
01-02 22:04:26.672: ERROR/ActivityThread(2024):     at android.os.Looper.loop(Looper.java:123)
01-02 22:04:26.672: ERROR/ActivityThread(2024):     at android.app.ActivityThread.main(ActivityThread.java:4203)
01-02 22:04:26.672: ERROR/ActivityThread(2024):     at java.lang.reflect.Method.invokeNative(Native Method)
01-02 22:04:26.672: ERROR/ActivityThread(2024):     at java.lang.reflect.Method.invoke(Method.java:521)
01-02 22:04:26.672: ERROR/ActivityThread(2024):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:791)
01-02 22:04:26.672: ERROR/ActivityThread(2024):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:549)
01-02 22:04:26.672: ERROR/ActivityThread(2024):     at dalvik.system.NativeStart.main(Native Method)
01-02 22:04:26.692: WARN/ActivityManager(558): Unbind failed: could not find connection for android.os.BinderProxy@43c509a8

编辑第二
次再次感谢您的建议。我按照你的建议做了,并为onUnBind()服务添加了一个覆盖。 onUnBind()实际上只有在所有客户端与服务断开连接时才会触发,但是当我点击主页按钮时,它执行了,然后弹出错误消息!这对我来说毫无意义,因为所有客户端都已与服务解除绑定,那么被破坏的客户端怎么会泄漏 serviceConnection?一探究竟:

01-03 19:38:30.837: DEBUG/LightfactoryRemote(1118): Focus onPause()1
01-03 19:38:31.577: WARN/IInputConnectionWrapper(1118): showStatusIcon on inactive InputConnection
01-03 19:38:31.587: DEBUG/LightfactoryRemote(1118): Focus onStop()
01-03 19:38:31.600: DEBUG/LightfactoryRemote(1118): Focus onDestroy() attempted to unbind service
01-03 19:38:31.607: DEBUG/LightfactoryRemote(1118): Focus onDestroy()
01-03 19:38:31.677: DEBUG/LightfactoryRemote(1125): TelnetService onUnBind()
01-03 19:38:31.727: ERROR/ActivityThread(1118): Activity com.wingedvictorydesign.LightfactoryRemote.LightfactoryRemote has leaked ServiceConnection com.wingedvictorydesign.LightfactoryRemote.LightfactoryRemote$TelnetServiceConnection@435baeb0 that was originally bound here
01-03 19:38:31.727: ERROR/ActivityThread(1118): android.app.ServiceConnectionLeaked: Activity com.wingedvictorydesign.LightfactoryRemote.LightfactoryRemote has leaked ServiceConnection com.wingedvictorydesign.LightfactoryRemote.LightfactoryRemote$TelnetServiceConnection@435baeb0 that was originally bound here
01-03 19:38:31.727: ERROR/ActivityThread(1118):     at android.app.ActivityThread$PackageInfo$ServiceDispatcher.<init>(ActivityThread.java:886)
01-03 19:38:31.727: ERROR/ActivityThread(1118):     at android.app.ActivityThread$PackageInfo.getServiceDispatcher(ActivityThread.java:781)
01-03 19:38:31.727: ERROR/ActivityThread(1118):     at android.app.ApplicationContext.bindService(ApplicationContext.java:820)
01-03 19:38:31.727: ERROR/ActivityThread(1118):     at android.content.ContextWrapper.bindService(ContextWrapper.java:307)
01-03 19:38:31.727: ERROR/ActivityThread(1118):     at com.wingedvictorydesign.LightfactoryRemote.LightfactoryRemote.onResume(LightfactoryRemote.java:102)
01-03 19:38:31.727: ERROR/ActivityThread(1118):     at android.app.Instrumentation.callActivityOnResume(Instrumentation.java:1225)
01-03 19:38:31.727: ERROR/ActivityThread(1118):     at android.app.Activity.performResume(Activity.java:3530)
01-03 19:38:31.727: ERROR/ActivityThread(1118):     at android.app.ActivityThread.performResumeActivity(ActivityThread.java:2619)
01-03 19:38:31.727: ERROR/ActivityThread(1118):     at android.app.ActivityThread.handleResumeActivity(ActivityThread.java:2647)
01-03 19:38:31.727: ERROR/ActivityThread(1118):     at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2287)
01-03 19:38:31.727: ERROR/ActivityThread(1118):     at android.app.ActivityThread.access$1800(ActivityThread.java:112)
01-03 19:38:31.727: ERROR/ActivityThread(1118):     at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1692)
01-03 19:38:31.727: ERROR/ActivityThread(1118):     at android.os.Handler.dispatchMessage(Handler.java:99)
01-03 19:38:31.727: ERROR/ActivityThread(1118):     at android.os.Looper.loop(Looper.java:123)
01-03 19:38:31.727: ERROR/ActivityThread(1118):     at android.app.ActivityThread.main(ActivityThread.java:3948)
01-03 19:38:31.727: ERROR/ActivityThread(1118):     at java.lang.reflect.Method.invokeNative(Native Method)
01-03 19:38:31.727: ERROR/ActivityThread(1118):     at java.lang.reflect.Method.invoke(Method.java:521)
01-03 19:38:31.727: ERROR/ActivityThread(1118):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:782)
01-03 19:38:31.727: ERROR/ActivityThread(1118):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:540)
01-03 19:38:31.727: ERROR/ActivityThread(1118):     at dalvik.system.NativeStart.main(Native Method)
01-03 19:38:31.777: WARN/ActivityManager(564): Unbind failed: could not find connection for android.os.BinderProxy@4370f8a8

我认为这可能就像您说的那样,在unbindService()调用时绑定到服务不完整,但是我尝试在服务上调用一个方法,因为我支持每个活动以验证绑定是否完成,它们都去了通过罚款。

一般来说,这种行为似乎与我在每项活动中停留的时间无关。但是,一旦第一个活动泄漏了它的 serviceConnection,它们都会像我之后通过它们返回的那样做。

另一件事,如果我在开发工具中打开“立即销毁活动”,它可以防止这个错误。

有任何想法吗?

4

10 回答 10

58

您没有提供任何来自 的代码LightFactoryRemote,因此这只是一个假设,但如果您单独使用该bindService方法,您可能会遇到这种问题。

为了确保服务保持运行,即使在启动它的活动已经onDestroy调用了它的方法之后,您也应该首先使用startService.

startService状态的 android 文档:

使用 startService() 会覆盖由 bindService(Intent, ServiceConnection, int) 管理的默认服务生命周期:它要求服务保持运行直到调用 stopService(Intent),无论是否有任何客户端连接到它。

而对于bindService

只要调用上下文存在,系统就会认为该服务是必需的。例如,如果这个 Context 是一个停止的 Activity,那么在 Activity 恢复之前,服务将不需要继续运行。


所以发生的事情是绑定(并因此启动)服务的活动已停止,因此系统认为不再需要该服务并导致该错误(然后可能停止该服务)。


例子

在此示例中,无论调用活动是否正在运行,服务都应保持运行。

ComponentName myService = startService(new Intent(this, myClass.class));
bindService(new Intent(this, myClass.class), myServiceConn, BIND_AUTO_CREATE);

第一行启动服务,第二行将其绑定到活动。

于 2010-01-03T00:57:14.767 回答
48

您可以使用:

@Override
public void onDestroy() {
    super.onDestroy();

    if (mServiceConn != null) {
        unbindService(mServiceConn);
    }
}
于 2014-04-25T12:36:14.270 回答
31

您绑定 inonResume但取消绑定 in onDestroy。您应该onPause改为执行取消绑定,以便始终有匹配的绑定/取消绑定调用对。您的间歇性错误将是您的活动暂停但未销毁,然后再次恢复的地方。

于 2010-11-06T00:01:32.787 回答
13

您应该只需要在onDestroy(). 然后,警告将消失。

这里

正如活动文档试图解释的那样,您将使用三个主要的绑定/取消绑定分组:onCreate() 和 onDestroy()、onStart() 和 onStop(),以及 onResume() 和 onPause()。

于 2011-07-20T07:19:46.867 回答
11

您提到用户在活动之间切换非常快。可能是您在unbindService建立服务连接之前调用的?这可能会导致无法取消绑定,然后泄漏绑定。

不完全确定你如何处理这个......也许当被调用时,如果已经被调用,onServiceConnected你可以调用。不确定这是否会起作用。unbindServiceonDestroy


如果您还没有,您可以在您的服务中添加一个 onUnbind 方法。这样你就可以准确地看到你的类何时解除绑定,这可能有助于调试。

@Override
public boolean onUnbind(Intent intent) {
    Log.d(this.getClass().getName(), "UNBIND");
    return true;
}
于 2010-01-03T12:51:21.350 回答
2

尝试在 OnUserLeaveHint() 中使用 unbindService()。它可以防止 ServiceConnection 泄露场景和其他异常。
我在我的代码中使用它并且工作正常。

于 2011-01-04T04:05:32.963 回答
2

当您要绑定有界服务时会发生此错误。所以,溶胶应该是:-

  1. 在服务连接中添加 serviceBound 如下:

    private final ServiceConnection serviceConnection = new ServiceConnection() {
    @Override
    public void onServiceConnected(ComponentName name, IBinder service) {
        // your work here.
    
        serviceBound = true;
    
    }
    
    @Override
    public void onServiceDisconnected(ComponentName name) {
    
        serviceBound = false;
    }
    

    };

  2. 取消绑定服务 onDestroy

        if (serviceBound) {
            unbindService(serviceConnection);
        }
    
于 2020-07-20T07:38:25.497 回答
1

你可以用一个布尔值来控制它,所以你只有在绑定时才调用 unbind

public void doBindService()
{
    if (!mIsBound)
    {
        bindService(new Intent(this, DMusic.class), Scon, Context.BIND_AUTO_CREATE);
        mIsBound = true;
    }
}

public void doUnbindService()
{
    if (mIsBound)
    {
        unbindService(Scon);
        mIsBound = false;
    }
}

如果您只想在已连接的情况下解除绑定

public ServiceConnection Scon = new ServiceConnection() {

    public void onServiceConnected(ComponentName name, IBinder binder)
    {
        mServ = ((DMusic.ServiceBinder) binder).getService();
        mIsBound = true;
    }

    public void onServiceDisconnected(ComponentName name)
    {
        mServ = null;
    }
};
于 2014-11-03T09:36:06.573 回答
0

活动中绑定的每个服务都必须在应用关闭时解除绑定。

所以尝试使用

 onPause(){
   unbindService(YOUR_SERVICE);
   super.onPause();
 }
于 2014-03-27T17:32:55.993 回答
0

我最近一直在阅读有关 Android 服务的信息,并有机会深入研究它。我遇到了服务泄漏,因为我有一个未绑定的服务正在启动一个绑定的服务,但在这种情况下,我的未绑定的服务被替换为Activity

因此,当我使用stopSelf()停止未绑定的服务时,发生了泄漏,原因是我在未解除绑定服务的情况下停止了父服务现在绑定的服务正在运行,它不知道它属于谁。

简单直接的解决方法是您应该调用unbindService(YOUR_SERVICE); 在您 的父 Activity/Service的onDestroy()函数中。这样,生命周期将确保您的绑定服务在您的父活动/服务关闭之前停止或清理。

这个问题还有另一种变体。有时在您的绑定服务中,您希望某些功能仅在服务已绑定时才能工作,因此我们最终在onServiceConnected中放置了一个绑定标志,例如:

public void onServiceConnected(ComponentName name, IBinder service) {
            bounded = true;
            // code here
        }

到目前为止,这工作正常,但是当我们将onServiceDisconnected函数视为unbindService函数调用的回调时,问题就来了,文档中的 this 仅在服务被 kill 或 crash 时调用。而且你永远不会在同一个线程中得到这个回调。因此,我们最终会做类似的事情:

public void onServiceDisconnected(ComponentName name) {
            bounded = false;
        }

这会在代码中产生重大错误,因为我们的绑定标志永远不会重置为 false,并且当该服务重新连接时,大多数情况下都是如此true。因此,为了避免这种情况,您应该在bound调用时将 设置为 false unbindService

这在 Erik 的博客中有更详细的介绍。

希望来过这里的人能满足他的好奇心。

于 2020-06-06T07:02:31.893 回答