Reputation: 23606
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.
Upvotes: 4
Views: 4609
Reputation: 1006539
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".
Upvotes: 4