tags:

views:

698

answers:

1

I want to launch more than one application at the same time.Like one application should run in the background when a new application is started,and i have to switch between those two application.If anyone having the code to do this please help me.Give some website links to know about the multitasking in android and how to achieve it.

+3  A: 

If you want to run something in the background, you have to use a Service. Services are not killed except in extreme memory situations. Read the Application Fundamentals for more information.

Isaac Waller