tags:

views:

28

answers:

1

Is it possible to start an Activity in the background? I need such an Activity that can operate in the background and spawn other Activities as needed in response to user commands issued to my Home Screen widget.

+2  A: 

Is it possible to start an Activity in the background?

No.

I need such an Activity that can operate in the background and spawn other Activities as needed in response to user commands issued to my Home Screen widget.

Your AppWidgetProvider can "spawn other Activities as needed in response to user commands issued to my Home Screen widget", assuming that by "user commands" you mean "clicks".

CommonsWare