Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an Activity calling a Service defined in IDownloaderService.aidl:

public class Downloader extends Activity {
 IDownloaderService downloader = null;
// ...

In Downloader.onCreate(Bundle) I tried to bindService

Intent serviceIntent = new Intent(this, DownloaderService.class);
if (bindService(serviceIntent, sc, BIND_AUTO_CREATE)) {
  // ...

and within the ServiceConnection object sc I did this

public void onServiceConnected(ComponentName name, IBinder service) {
  Log.w("XXX", "onServiceConnected");
  downloader = IDownloaderService.Stub.asInterface(service);
  // ...

By adding all kinds of Log.xx I found that the code after if(bindService(...)) actually goes BEFORE ServiceConnection.onServiceConnected is being called - that is, when downloader is still null - which gets me into trouble. All the samples in ApiDemos avoid this timing problem by only calling services when triggered by user actions. But what should I do to right use this service after bindService succeeds? How can I wait for ServiceConnection.onServiceConnected being called reliably?

Another question related. Are all the event handlers: Activity.onCreate, any View.onClickListener.onClick, ServiceConnection.onServiceConnected, etc. actually called in the same thread (mentioned in the doc as the "main thread")? Are there interleaves between them, or Android would schedule all events come into being handled one-by-one? Or, When exactly is ServiceConnection.onServiceConnected actually going to be called? Upon completion of Activity.onCreate or sometime when A.oC is still running?

share|improve this question

3 Answers

up vote 18 down vote accepted

How can I wait for ServiceConnection.onServiceConnected being called reliably?

You don't. You exit out of onCreate() (or wherever you are binding) and you put you "needs the connection established" code in onServiceConnected().

Are all the event handlers: Activity.onCreate, any View.onClickListener.onClick, ServiceConnection.onServiceConnected, etc. actually called in the same thread

Yes.

When exactly is ServiceConnection.onServiceConnected actually going to be called? Upon completion of Activity.onCreate or sometime when A.oC is still running?

Your bind request probably is not even going to start until after you leave onCreate(). Hence, onServiceConnected() will called sometime after you leave onCreate().

share|improve this answer
Thanks for this information. Hope the Android document could get things clear like this. – Ryan Jun 17 '10 at 1:51
2  
The various Service API demos have examples; see Local Service Binding and Remote Service Binding in particular: developer.android.com/resources/samples/ApiDemos/src/com/… also the Service java doc has the sample code for local service binding: developer.android.com/reference/android/app/… – hackbod Jun 17 '10 at 6:38
Thanks hackbod. Apparently this section doesn't appear in my local copy of document. I'll take a look online. – Ryan Jun 18 '10 at 15:28
7  
Although I can understand that onCreate() must finish before onServiceConnected() will start (I guess it is pending in the main thread Looper), I notice that onStart() and onResume() ALSO run before onServiceConnected()! Isn't this becoming a dangerous race condition? View components that depend on the Service are ready to go, but the Service isn't connected yet. – jfritz42 Dec 14 '11 at 17:28
Related question: are you sure your activity still exists when onServiceConnected is called ? – Paul Praet Apr 27 at 9:56
show 1 more comment

I did something similar b4, only different is I am not binding to service, but just start it. I would broadcast an intent from the service to notify the caller/activity about it is started.

share|improve this answer
Thanks for the quick reply. So in the broadcast receiver you would bind to the service to call the RPC methods, or are you not calling them in your case? – Ryan Jun 16 '10 at 17:27
You can't bind to a service from a broadcast receiver (since the broadcast receive is done once it returns from onReceive). – hackbod Jun 17 '10 at 6:37

I had the same problem. I didn't want to put my bound service dependent code in onServiceConnected, though, because I wanted to bind/unbind with onStart and onStop, but I didn't want the code to run again every time the activity came back to the front. I only wanted it to run when the activity was first created.

I finally got over my onStart() tunnel vision and used a Boolean to indicate whether this was the first onServiceConnected run or not. That way, I can unbindService in onStop and bindService again in onStart without running all the start up stuff each time.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.