PLEASE READ: Do NOT worry about Apps running in the Background

Status
Not open for further replies.

Dream

Member
Joined
Nov 5, 2009
Messages
271
Reaction score
0
Android isn't "close" to linux, it IS linux.. that is the OS that runs on all android phones is a linux kernel, 2.6.x. Android is a platform that runs on top of the linux kernel and handles the task of starting up individual Dalvik JVMs for each app you run. Each and every app you see running in your task list is a separate JVM instance all to itself, so that if the app crashes the JVM, it ONLY brings down that one app. The phone still works, as do the other apps. Each time you install an app, it's installed as a separate user as well. So each app you run, runs as it's own separate user too, making it that much more secure from one app to the next.

That's interesting. What do you think about the apps running in the back round?
 

trevorl

New Member
Joined
Nov 9, 2009
Messages
3
Reaction score
0
To see what is using up your battery power on the Droid, go to Settings > About phone > Battery use. This will tell you exactly what has been using up your battery power.

If you are concerned about WiFi, GPS or other applications or services using up your battery power, you're probably better off using an app like Locale to automatically manage your settings based on time & location rather than constantly manually shutting down processes.
 

mth04

Premium Member
Premium Member
Joined
Oct 30, 2009
Messages
3,840
Reaction score
0
This subject has been talked about a lot in here since the Droids release. I've talked to a developer who is very well versed in Linux/Android and he summarized the following as correct......

Android is different to most other phone operating systems. It's closer to Linux than any other type of operating system. Lots of services and applications constantly run in the background just like they do on Windows. However, and this is important, they do not have to use up a ton of resources. A service or app can be loaded, yet use almost no additional memory, and 0% CPU until it actually has to do something.

In general, killing off stuff is a waste of time. Android automatically asks apps to close that aren't needed when it needs more memory. Killing off some of the processes you are killing off also means it'll slow your phone down, as these processes only need to reload, and when you do need to use them it means the phone will be slower for the few seconds it takes to reload them.


First Ceral let me say thanks for this thread. There's always so much srrounding memory and devices. I agree that this should be stickied.
 

andjarnic

Member
Joined
Nov 7, 2009
Messages
239
Reaction score
0
Location
Sacramento area, CA
@Dream... background processes in the linux OS use almost no cpu or memory usually. As I am writing android apps on Ubuntu Linux, I am looking at the list of tasks running in the background, there are quite a few, and all barely use any memory or cpu. They will be task switched just like any app you run.

@Getaphixx -

1. Apps could possibly use battery life... (Why would I want to let that happen?)

Keep in mind Android phones can run mulitple apps at once. Because of this it is paramount that app developers use all possibilities to properly shut down their apps. One thing you have to remember, unlike any other phone you have used including iPhone, clicking on back, home, etc is NOT going to shut down the app. If you need to go back to the home screen, that app is still running most likely. There are ways a developer can "listen" for when a user does this and shut down their app to mimic how iPhone does it, for example. I am guessing most app developers don't do that tho. I've seen many apps with EXIT/QUIT options, and many without. This is sadly one of the few things I fear non-techie users are not going to understand or realize, especially coming over from iPhone. The home/back button doesn't exit an app if the developer doesn't program it that way. As you are seeing, many apps remain running. HOWEVER, what you should know is.. most apps are sort of suspended when this happens. While you can run multiple apps in the background, only services run continually in the background. All apps, while you can run several, only the FOREGROUND app is actually consuming resources, including cpu cycles and memory. What happens when you switch apps that are not services (services you can't see anyway as they do not have an user interface), they have several signals (hooks, intents, etc) sent to them to allow a developer to save the state of the application, release any resources not needed like DB connections, network, etc, so that while it is suspended, those resources are given back to Android for another app that becomes the foreground app, to use. However, this is both the greatest and worse feature of such an open system as Android. Because Java is the largest language choice right now and Android 2.0 is out, and more phones are coming, and tablets, etc.. you are going to see a plethora of java developers jump on this bandwagon. You are going to see a huge amount of apps hit the store. And you are going to find a LOT of those apps are inexperienced developers trying to mimic the iFart sensation to make millions and retire in 6 months, yet will completely ignore many of the requirements to be a good citizen in the android app world. So, many apps are NOT going to properly release resources, they wont save state, etc. So you will find more and more apps that are going to eat up memory and thus when you kill it using ATK, you'll see resources released and more memory for you to use.

Here is the thing to know tho.. Android is in control. Period. Android WILL KILL AN APPLICATION FOR YOU! :) In other words, if you start running out of memory, Android will send some signals to the app saying "Yo.. I really really need to use some of those resources you got tied up.. so I am shutting you down, completely. Here's your last chance to save any state..." and boom! Gone. Android thus will indeed handle memory as needed on the fly for you. Now.. what happens when you switch back to that app you left running but Android shut down? Well, it starts up again. If the app was built correctly, it will receive a bundle of info pertaining to state info that it should have saved when Android killed it. If done right, it will resume as if nothing happened. You will see a slightly longer delay than if it was still running, as it is now starting up a JVM again to run the app in, and the app may have to reload some state, screens, tiles, graphics, sounds, etc.


3. I don't use my phone for 45min.. And previously used App Killer to disable multiple items.. I come back.. I have things like Alarm Clock and others that have NO business being opened much less running... I kill them.. Jump from 65 to 104mb of memory..

This one does iritate me too.. I am not sure what controls alarm clock coming back to life. I suspect it is a SERVICE app with an interface tho. Service apps can run in the background.. so most likely the Alarm Clock app installed a service as well..that DOES run even when you shut down the alarm clock app. Every so often that service executes in the background and realizes alarm clock isn't running but it needs to, as the alarm clock app is the one that will make use of your ring tones that you selected in the alarm clock app to wake you up with, etc. That is my guess. I am not completely sure tho how this is done yet. I have only begun developing and got a lot to learn yet.


4. Please tell me how killing UNEEDED items is a waste...lol

It is indeed a waste. I am telling you now as a developer, albeit a new one, but one who has been doing java for over a decade and understands the basics of how all this works. Android WILL shut down apps (as I explained above in detail) when it needs to in order to reclaim resources so that the top app (foreground) might have resources to do something with. Even if the foreground app doesn't need them, Android will kill apps if need be as necessary. As I said above, even tho it actually shuts the app down, it goes thru steps to allow an app to cleanly shut down AND recover from the shutdown as if it was never shut down. The app developer just has to write the code correctly to handle this situation.

So, essentially, killing apps becuase you are afraid you are running out of memory is not needed. There is ONE possibility tho.. an app could run out of memory itself! It could load a very large dataset into memory and not have enough. I haven't found/read anything about how Android itself handles swapping memory to disk.. as I don't think you can set up swap memory to the SD card. It would be VERY nice if you could do this, it would allow more robust apps to at least use more memory than 128MB or 256MB the phone comes with. It would also see minor bumps in performance when it was time to swap some memory to the SD card to free up memory, or bring it back in. Windows, Linux, OSX, they all do this for you. I suspect the underlying linux OS handles this, but not quite sure if it does so or not.

Hope this wasn't too technical and helps some of you understand the killing app stuff in more detail.
 

Chigga311

New Member
Joined
Nov 8, 2009
Messages
22
Reaction score
0
Andjarnic -

That was very technical but understandable.
I know NOTHING about computers and I got the jist of your explination.

Thanks
 

andjarnic

Member
Joined
Nov 7, 2009
Messages
239
Reaction score
0
Location
Sacramento area, CA
Hey.. glad it helped and especially glad that if you know nothing about computers and yet you still understood it. Maybe my geek to english is getting better. :D
 

ThePhoneGuy

Member
Joined
Nov 7, 2009
Messages
120
Reaction score
0
Location
NYC
I have 15 apps running right now in the background according to APP KILLER, I haven't touch or killed any of the apps except for the APP KILLER itself, i killed APP KILLER only, and left the other apps to play themselves out.

With about 10 text messages and three calls, a few internet surfs, and a 2 minute timer on the face screen... i still have a pretty strong battery left, just the tip of the battery has darken since 9AM.
 
OP
cereal killer

cereal killer

Administrator
Staff member
Joined
Oct 29, 2009
Messages
11,254
Reaction score
1,269
Location
Austin, TX
Current Phone Model
Nokia Lumia Icon
Thanks for clarifying it so well for everyone andjarnic...

This should be stickied because this subject is always brought up and there is a lot of misinformation out there about.

Again thanks for clarifying that.....good stuff : )
 

medicTHREE

Member
Joined
Nov 3, 2009
Messages
457
Reaction score
0
While technically true, how is it that these running processes eat 70 mb of memory in a mere hour.
 
OP
cereal killer

cereal killer

Administrator
Staff member
Joined
Oct 29, 2009
Messages
11,254
Reaction score
1,269
Location
Austin, TX
Current Phone Model
Nokia Lumia Icon
I think it is stickied..I see it at the top of the forum list.
thats because we are posting in the thread and it brings it to the top : )

If stickied it would say "Stickied" then the title
 

mth04

Premium Member
Premium Member
Joined
Oct 30, 2009
Messages
3,840
Reaction score
0
I think it is stickied..I see it at the top of the forum list.
thats because we are posting in the thread and it brings it to the top : )

If stickied it would say "Stickied" then the title


I stickied it for now. Good info. here. While the devices are very new from VZW I thought this was a good topic to bring out to people :). Thanks again for the great information
 

ThePhoneGuy

Member
Joined
Nov 7, 2009
Messages
120
Reaction score
0
Location
NYC
I have 15 apps running right now in the background according to APP KILLER, I haven't touch or killed any of the apps except for the APP KILLER itself, i killed APP KILLER only, and left the other apps to play themselves out.

With about 10 text messages and three calls, a few internet surfs, and a 2 minute timer on the face screen... i still have a pretty strong battery left, just the tip of the battery has darken since 9AM.

I still have 15 apps running, its 5pm, my phone has been idle since my above post, no calls, no texts, the battery icon still only has the tip part darken.
 
Status
Not open for further replies.
Top