1

我的 Android 服务和重新绑定到它的客户端应用程序有问题。当客户端应用程序最初绑定到我的服务时,一切正常,之后可以将消息从服​​务发送到客户端。但是,如果客户端应用程序被杀死然后再次绑定,则在服务中正确调用 onRebind(),但我在意图中的信使无效,导致 DeadObjectException,如下面的代码中所述。有任何想法吗?

这是我的服务代码:

@Override
public IBinder onBind(Intent intent)
{        
    getMessenger(intent);

    return _inputMessenger.getBinder();
}

@Override
public void onRebind(Intent intent)
{        
    getMessenger(intent);
}

@Override
public boolean onUnbind(Intent intent)
{                
    return true;
}

private void getMessenger(Intent intent)
{
    Bundle extras = intent.getExtras();

    if (extras != null)
    {
        // Get the messenger sent from the app.
        // This is handled correctly after onBind() and onRebind().
        _outputMessenger = (Messenger) extras.get("MESSENGER"); 
        Log.i(TAG, "Got messenger from app: " + _outputMessenger);           
    }
}

private void sendMessageToClient(String key, String value)
{   
    Message message = Message.obtain();
    Bundle bundle = new Bundle();
    bundle.putString(key, value);
    message.setData(bundle);

    try
    {
        _outputMessenger.send(message); // EXCEPTION OCCURS HERE AFTER onRebind()
    }
    catch (Exception ex)
    {
        Log.e(TAG, "_outputMessenger.send() failed: " + ex);
    }
}

这是应用程序的代码:

     Intent intent = new Intent("com.foobar.service");

    // Create a new messenger for the communication from service to app.
    _messenger = new Messenger(new ServiceToActivityHandler());
    intent.putExtra("MESSENGER", _messenger);

    _serviceConnection = new MyServiceConnection();

    _isBoundToService = _context.bindService(intent, 
                                           _serviceConnection, 
                                           Context.BIND_AUTO_CREATE);
4

1 回答 1

0

有一个关于绑定服务的注释......附加注释下的部分应该很有用。我认为捕获异常可能是你应该做的......

try {
    // Do stuff
} catch(DeadObjectException e){
    // Dead object
}

我读到对象生命周期应该由android跨进程引用计数,所以你应该没问题,当客户端死时我想知道是否

 _outputMessenger // needs to be unassigned in your service...?

我假设正在发生的事情是您与服务的绑定,它将一些数据泵回您的客户端,您的客户端消失了,服务继续运行但随后需要将一些数据泵送到此时已经消失的客户端?

还有这个链接

于 2012-08-27T21:44:59.627 回答