Get started, but in the background

My application will launch a new action (say, a calculator) using intentions.

My requirement: is there a way to start a new activity in the background (not in the foreground)?

Can anyone suggest a solution?

Thank you

+3
source share
3 answers

Short version: use streams.

Short version: read about streams .

+1
source

What do you want to do exactly? Depending on this, you have several options:

  • You can use AsyncTask
  • You can use local service
  • You can use remote service
  • You can use thread
0
source
0

All Articles