Latest Android Aptitude Question SOLUTION: How to monitor service connection status in bound services?
Options
1) using isServiceConnected(), it returns true if service is connected
2) using onServiceDisConnected(), this f
How to monitor service connection status in bound services?
Options
1) using isServiceConnected(), it returns true if service is connected
2) using onServiceDisConnected(), this function will be called if connection is broken
3) client can keep polling to service if it is available or not.
4) using ServiceConnection class.