When exactly onServiceConnected for bounded servic

2019-04-26 09:14发布

I am trying to bind service from another service like this:

public class ServiceA extends Service {
    private ServiceB mDataService;
    private boolean mIsBound;

    @Override
    public void onCreate(){
        super.onCreate();
        doBindService();
        /* ... */
    }

    @Override
    public void onStart(final Intent intent, final int startId){
        /*...*/
    }

    private ServiceConnection mConnection = new ServiceConnection() {
        public void onServiceConnected(ComponentName className, IBinder service) {            
            mDataService = ((ServiceB.LocalBinder)service).getService();
        }
        public void onServiceDisconnected(ComponentName className) {             
            mDataService = null;
        }
    };

    void doBindService() {          
        bindService(new Intent(ServiceA.this, ServiceB.class), mConnection, Context.BIND_AUTO_CREATE);          
        mIsBound = true;
    }

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

This is a simple snippet that I took from goolge's samples :) The code works just fine and mDataService holds a reference to ServiceB instance, but there is one thing I could not understand: the onServiceConnected callback is called after the call to onStart. As I saw on android's docs, the callback is running on the main thread - but can I count on it that it will ALWAYS happen in this order in my case? onCreate -> onStart -> onServiceConnected ?

2条回答
混吃等死
2楼-- · 2019-04-26 09:24

I wouldn't rely on it. It depends if ServiceA and ServiceB are running in the same or in different processes. It probably also depends if ServiceB has already been started. You should write your code so that you don't depend on this sequence of events.

查看更多
Emotional °昔
3楼-- · 2019-04-26 09:44

It hasn't been clearly stated in the official dev guide, the Context.bindService() is indeed an asynchronous call, this also explain why ServiceConnection.onServiceConnected() is implemented as a callback. Check out the dev guide:

A client can bind to the service by calling bindService(). When it does, it must provide an implementation of ServiceConnection, which monitors the connection with the service. The bindService() method returns immediately without a value, but when the Android system creates the connection between the client and service, it calls onServiceConnected() on the ServiceConnection, to deliver the IBinder that the client can use to communicate with the service.

ServiceConnection.onServiceConnected() is called on UI thread at some point in the future (not immediately after calling Context.bindService()), once connection to service is properly established.

查看更多
登录 后发表回答