I am trying to create a service class with a inner class which is a Handler class , unfortunately I am not able to access handler.obtainMessage() in this class .. Can any one gi
You've got the wrong Handler class imported. It should be android.os.Handler, not java.util.logging.Handler.
Handler
android.os.Handler
java.util.logging.Handler