Why Is Onstart Is Not Called?
I am trying to implement a very simple service example. The user inputs the value through EditText and clicks on Calculate Button. The Calculate button triggers a service which pe
Solution 1:
You need to call Context.startService() in order to use onStart(): http://developer.android.com/reference/android/content/Context.html#startService(android.content.Intent)
Post a Comment for "Why Is Onstart Is Not Called?"