by calling bindService() in order to create a long-standing connection. • Use it when you want to interact with the service from activities and other components in your app • Use it when you expose some of your application's functionality to other applications, through IPC. Intent intent = new Intent(this, MyService.class) bindService(i, mServerConn, Context.BIND_AUTO_CREATE); startService(i);