I\'m looking for the most suitable class to be a dispatcher for AsyncTasks invoked from my Activities.
I am in the process of creating an app that is similar to the built-in SMS app. What I need: a service that is always running in the background
I\'m writing my first Android application and trying to get my head around communication between services and activities. I have a Service that will run in the background and do some gps and time base
Is there a way I can test if there are any other activities in my app still alive?I am looking to stop a service in an开发者_如何学编程 onDestroy method, but only want to do this if there are no other
I am writing an Android 1.5 application which starts just after boot-up. This is a Service and should take a picture without preview. This app will log the light density in some areas whatever. I was
I have three separate applications A, B and C.All of them use service S.When A, B or C connect to service S and service S must start, it must gather credentials from the user using form F.
I am starting a service using startService(Intent intent) method. When i call this function it reaches the onCreate of service but it is unable to call onStartCommand. Here is my code--
I have two classes, one is a standard activity, the other a service. I would like the service to update a TextView (via .setText()) of the Activity on certain events that happen within the service.