97

Does one really need to install a task manager? My phone does slowdown on rare occasions but it's not something that hampers regular usage.

Ravi Vyas
  • 1,583
  • 1
  • 13
  • 16

7 Answers7

89

See this

http://geekfor.me/faq/you-shouldnt-be-using-a-task-killer-with-android/

FAQ: Why You Shouldn’t Be Using a Task Killer with Android (geekfor.me) - xda-developers

tl;dr version:

  • Android is hard coded to automatically kill a task when more memory is needed.
  • Android is hard coded to automatically kill a task when it’s done doing what it needs to do.
  • Android is hard coded to automatically kill a task when you haven’t returned to it in a long time.
  • Most services (while possibly running in the background) use very little memory when not actively doing something.
  • A content provider is only doing something when there is a notification for it to give. Otherwise it uses very little memory.
  • Killing a process when it isn’t ready only causes it to have to reload itself and start from scratch when it’s needed again.
  • Because a task is likely running in the background for a reason, killing it will only cause it to re-spawn as soon as the activity that was using it looks for it again. And it will just have to start over again.
  • Killing certain processes can have undesirable side effects. Not receiving text messages, alarms not going off, and force closes just to name a few.
  • The only true way to prevent something from running at all on your phone would be to uninstall the .apk.
  • Most applications will exit themselves if you get out of it by hitting “back” until it closes rather than hitting the “home” button. But even with hitting home, Android will eventually kill it once it’s been in the background for a while.

As Android was designed you don't need to kill apps.

blade19899
  • 171
  • 1
  • 1
  • 8
Cristi
  • 1,096
  • 7
  • 4
18

No, and even more so with the latest 2.2 versions of Android. I used to use them, but I've stopped and everything has been better since I stopped using a task manager/killer. There is an app called Watchdog if you'd like to be notified about a process using a ton of CPU for a long period of time, which then will give you the option to kill that run-away process.

danivovich
  • 793
  • 10
  • 11
7

Yes. You should have a task-killer app, but not for the reasons you think.

I've had runaway processes (maybe watchdog can help) like google maps which then ran twice, once to kill my cpu/ram and once to actually work. I had to use the task killer to kill both instances and then run the normal one.

RARELY will you actually need to manually kill anything. But like all programs, sometimes stuff happens. I've had apps crash the entire phone and they were not running in root or anything.

ale
  • 19,737
  • 34
  • 111
  • 161
Dmitriy Likhten
  • 1,369
  • 2
  • 12
  • 19
4

Sometimes when an app crashes or gets to a state that it's not response it's nice to be able to shut it down manually . . . but as for slowness issues a task manager isn't necessary as the OS itself handles multitasking better now.

tooshel
  • 839
  • 1
  • 12
  • 20
3

This comprehensive, informative & easily readible article entitled "Android Task Killers Explained: What They Do and Why You Shouldn’t Use Them" will provide you with a quick overview of how Android handles process management on its own fairly well by default. (Essentially that a Task Manager/ Killer App is not required- it was more useful in early version of the Android OS)

The Article will explain:

  • How Android Manages Processes
  • Why Task Killers Are (Usually) Bad News
  • What You Should Do Instead, e.g.:

    • Watch for Runaway Processes
    • Uninstall Bad Apps
    • Possibly Root Your Phone (although not necessary)
ale
  • 19,737
  • 34
  • 111
  • 161
Simon
  • 1,360
  • 1
  • 19
  • 28
2

When I was running Froyo, I installed task manager not to kill tasks, but to find an easy to review list of what is running and learn more about how apps work. This seemed the easiest way to learn what was running quickly.

Now that I have Gingerbread, I just use the "running" list under applications in the settings menu.

Alex B
  • 1,780
  • 2
  • 15
  • 26
0

Ideally, you don't need a task manager for the reasons mentioned by Cristi.

Random slowdowns on Android are likely from one of two sources:

  • Badly programmed apps (mostly)
  • Android cleaning up the memory and unloading stuff to make room (this should be only temporary, but can be very annoying on older devices or with custom ROMs)

If you experience slowdowns, and can't or don't want to uninstall the apps that cause them (or you don't know which ones it is), then a task killer can really make a difference. The same applies for older devices that don't have enough RAM.

So: it shouldn't be neccessary, but you might try it as a workaround if you have misbehaved apps on your device.

jdm
  • 513
  • 2
  • 5
  • 10