Ive set an in a running service a handler which does operation every X time.
Now after certain time i wanna start an activity from that service, and in onCreate of the activity i wanna access that handler of the service(which started the acitivty) and stop it's schedualed operation
(mHandler.removeCallbacks(someTask));
any idea how will i access the handler which is in the service?
the service and the called activity are in the same proccess.
thanks,
ray.