I am extending the IntentService class to run a background service on Android. The service starts after bootup immediately. I want to pop-up a user input box from this service periodically. So, I tried calling an Activity from the service, but it doesn't help. The dreaded box of Force Close appears and the service dies. Can anybody suggest some methods to call activity from a background service?
Thanks!