I'm working on a project that needs an activity to connect to a local service if that service is running and start it if it is not running. What is the suitable flag for such approach.

link|improve this question

Lol, the edits on this question completely reversed its meaning. GJ guys. – Jens Feb 17 at 13:00
feedback

1 Answer

up vote 0 down vote accepted

This is simply accomplished by, for instance, passing 0 in the last parameter to #bindService(Intent, ServiceConnection, int).

E.g.

bindService(new Intent(this, MrMeService.class), new ServiceConnection(){
        public void onServiceDisconnected(ComponentName name) {
            System.out.println("Service disconnected");
        }
        public void onServiceConnected(ComponentName name, IBinder service) {
            System.out.println("Service connected");
        }
    }, 0);

The #bindService(..) call will return true but the service will not actually start and your service connection will not trigger until someone actually starts the service, e.g. using #startService(Intent). At least this is how it works on ICS and Gingerbread.

link|improve this answer
didn't see 0 in the flags list, thanks – Mr.Me Feb 17 at 13:07
feedback

Your Answer

 
or
required, but never shown

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