Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Regarding Multitasking in Android application

Tags:

android

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.

like image 264
Rajapandian Avatar asked Feb 10 '26 20:02

Rajapandian


1 Answers

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.

like image 127
Isaac Waller Avatar answered Feb 13 '26 10:02

Isaac Waller