Android Context.bindService always returns false and ServiceConnection object is never triggered

So I finally figured it out. It turns out that TabSpec cannot bind to activities

Using getApplicationContext().bindService instead of just bindService on your
activity solves the problem as it is using the higher level application context.

Hope this helps someone!

Leave a Comment