Only 180 ~ 200 MB RAM free on boot? - Droid X General

What's going on? even after using advanced task killer, I only have around 200MB RAM free from the 512MB
What is eating up all my RAM?
It doesn't make sense that the OS requires 300MB of RAM to run, since it runs on devices with 128MB

I know I'm not the only one seeing this
Sent from my DROIDX using Tapatalk

Yeah, whats up with this????
After a reboot and letting it sit for a minute, I kill all tasks and it tells me 237Megs available....
Can the system be using all of that or something???

The os could be caching ram, maybe like windows 7 does now where it always shows low free ram even when it isn't truly in use. We need a linux or android expert to chime in.
Sent from my DROIDX using XDA App

Precaching photos for your contacts and their info and other photos in terms of widgets.
Droid X probably has some aggressive precaching.

Its pretty damn fast and everything runs great so i don't care too much how much it sais is free.
Sent from my DROIDX using XDA App

Yet it seems like nobody has thought to precache the app icons in the launcher. The launcher has always been the most lag-prone part of any android phone.

InspecterJones said:
Its pretty damn fast and everything runs great so i don't care too much how much it sais is free.
Sent from my DROIDX using XDA App
Click to expand...
Click to collapse
Right there with ya ; )

yes this phone has 512mb of ram, but the hardware in the phone makes alot of that ram dedicated to it, hardware such as the awesome gpu! so even 200mb free! is still alot let over.

Ryan Frawley said:
Yet it seems like nobody has thought to precache the app icons in the launcher. The launcher has always been the most lag-prone part of any android phone.
Click to expand...
Click to collapse
Only takes a second and they may have aimed for a limit.

I assume froyo may help with this...i hope! Im dropping down into the 50s will normal use and if i kill everything i can get back up to about 120s. there is a little lag on scrolling but ill wait for froyo. loving my first android!

I'm hovering around 75 or so, with mild auto task killing. Is this something to be concerned about? It feels relatively smooth.
EDIT: Will auto-killing tasks (useless ones) improve battery life or hurt it by wasting cpu cycles? I've heard that task killers aren't good for Android, and yet I also hear that they can improve battery life if used properly. I figure XDA will have a few people who can help answer that question

which tasks can you kill?
i wanted to know which tasks can be killed with my auto task killer without messing up anything with the phone? thanks.

Mikerrrrrrrr said:
I've heard that task killers aren't good for Android, and yet I also hear that they can improve battery life if used properly.
Click to expand...
Click to collapse
Unless you're running apps that are poorly designed and behaving badly, you probably won't see any benefits from using a task killer.

Related

Still laggy after usb debugging enabled

Hi all,
I have had my DHD for abit over a month now and love it, although it is very laggy now. The camera is attrocious (order of 10 seconds or more to take a photo), the contacts list takes about the same amount of time to load up. In general opening apps etc. is very slow.
This is after i have already enabled usb debugging.
Is there some way i can work out whats causing this lag? and fix it? its extremely annoying and dissapointing.
I already have a couple of task killers that clean the cache and kill apps every 20 min or so.
Any help is much appreciated.
Cheers
I'm by no means an expert, but I do know (from experience and reading on here) that using task killers is the dumbest idea ever on Android.. Not only does it not make any sense, as Android manages the ram better than any task killer is able to, it also sucks battery and is actually often the source of MORE lag..
DelLoce said:
I'm by no means an expert, but I do know (from experience and reading on here) that using task killers is the dumbest idea ever on Android.. Not only does it not make any sense, as Android manages the ram better than any task killer is able to, it also sucks battery and is actually often the source of MORE lag..
Click to expand...
Click to collapse
I agree. However, I find that running a task kill right before attempting to shoot 720P video removes the occasional stutter-bug with afflicts the DHD from time to time.
Don't keep task killers on auto mode . Use it when required
Sent from my Desire HD using XDA Premium App
solution:
uninstall all of the task killer apps
let android do the task killing itself
What about stopping an app from starting up at boot can anyone recommend anything?
Sent from my Desire HD using XDA Premium App
which processes cause the lag?
Very often such a lag may be caused by a process running wild. Please use a task manager to verify which task uses a suspicious amount of CPU! There are plenty of them, I can recommend SystemPanelLite by NextApp as a start.
Please take into consideration that Android is designed very efficient and aware of low memory conditions (and the DHD has over 750 MB!), and that it should not be reasonable to use a task killer at all, despite the situations where a certain task has gone insane, which has to be killed then.
Best regards,
arpy
I stopped my DHD's lag when I stopped using live wallpapers. Seems to have done the trick for now.
Sent from my Desire HD using XDA Premium App

task killer

should i use task killer or not. some say it slows down the mobile or eats more battery.. pls help
Just don't use it. There's an app called watchdog which works better, according to me.
Are this apps necessary to free memory or its just a gimmick
Sent from my Desire HD using XDA Premium App
No, Android will manage all of your memory for you. You do NOT need a task killer.
AWBob is right.
Task killer is not needed and actually can give the opposite effect from what you want it to do.....
Android is capable to manage memory (in addition, DHD has a lot of memory )
niks_5in said:
should i use task killer or not. some say it slows down the mobile or eats more battery.. pls help
Click to expand...
Click to collapse
I am no technogeekexpert
but Advanced Task Killer works just fine for me. Just leaving everything running slowed my Evo down enough to make it a satisfying. and feasible option.
Don't use it. It is not needed. Check the detailed info here.
http://forum.xda-developers.com/showthread.php?t=769735
Then how will we able to free RAM .
Sent from my Desire HD using XDA Premium App
Maybe this article helps you
By default, every application runs in its own Linux process. Android starts the process when any of the application’s code needs to be executed, and shuts down the process when it’s no longer needed and system resources are required by other applications.
A content provider is active only while it’s responding to a request from a ContentResolver. And a broadcast receiver is active only while it’s responding to a broadcast message. So there’s no need to explicitly shut down these components.
Activities, on the other hand, provide the user interface. They’re in a long-running conversation with the user and may remain active, even when idle, as long as the conversation continues. Similarly, services may also remain running for a long time. So Android has methods to shut down activities and services in an orderly way:
An activity can be shut down by calling its finish() method. One activity can shut down another activity (one it started with startActivityForResult()) by calling finishActivity().
A service can be stopped by calling its stopSelf() method, or by calling Context.stopService().
Components might also be shut down by the system when they are no longer being used or when Android must reclaim memory for more active components.
If the user leaves a task for a long time, the system clears the task of all activities except the root activity. When the user returns to the task again, it’s as the user left it, except that only the initial activity is present. The idea is that, after a time, users will likely have abandoned what they were doing before and are returning to the task to begin something new
Click to expand...
Click to collapse
niks_5in said:
Then how will we able to free RAM .
Sent from my Desire HD using XDA Premium App
Click to expand...
Click to collapse
You don't need free RAM, this isn't windows it doesn't perform better with free RAM, if you kill tasks to free RAM, android will probably re-open them again. Task killers will break your system, young children will laugh and point at you for using them, and support for any problems will consist of remove your task killer then come back and talk. Don't do it kids you know it makes sense
Oh man chill
Sent from my Desire HD using XDA Premium App
ghostofcain said:
You don't need free RAM, this isn't windows it doesn't perform better with free RAM, if you kill tasks to free RAM, android will probably re-open them again. Task killers will break your system, young children will laugh and point at you for using them, and support for any problems will consist of remove your task killer then come back and talk. Don't do it kids you know it makes sense
Click to expand...
Click to collapse
rofl, nice bit of scouse wit
HI,
As I don't want that children laughing at me and throwing some little rocks on me let me ask THE silly (or not ?) question :
is autokiller* as bad as the other "taskiller" ?
I've read that this app was "not like the others" but hey... devs who want to stick their apps in my phone are a bit like mens trying to stick something else .. somewhere else :
"I'm really not like the others baby..."
so... where is the truth ?
(as usual : I'm a French writing a pain-full English to read, sorry)
*too young here to post link, look for autokiller-memory-optimizer on appbrain
gregaste said:
HI,
As I don't want that children laughing at me and throwing some little rocks on me let me ask THE silly (or not ?) question :
is autokiller* as bad as the other "taskiller" ?
I've read that this app was "not like the others" but hey... devs who want to stick their apps in my phone are a bit like mens trying to stick something else .. somewhere else :
"I'm really not like the others baby..."
so... where is the truth ?
(as usual : I'm a French writing a pain-full English to read, sorry)
*too young here to post link, look for autokiller-memory-optimizer on appbrain
Click to expand...
Click to collapse
autokiller doesn't actually kill anything.. it allows you to change the default values set in android's internal memory management. it's more like an interface for android's internal memory manager.
I've replaced ATK with auto killer and I think that it is a positive change. My device feels faster en it looks like it runs smoother.
I think this is a great thread which helps me beter understand the memory handling within Android. For now auto killer looks like a charm to me, and has more benefit than ATK.
Sent from my Desire HD using XDA App
MANY RECOMMEND TO GET RID OF VIDEOLAG USE TASK MANAGER
Sent from my Desire HD using XDA Premium App
I am using rockplayer lite withour any video lag. Have played movies which are more than 1.4 GB withour any problems.
I am on LeeDroid 2.3.4 BETA 4 R2.
I used all the time ATK, but after reading this thread I have uninstalled it.
I give android a chance to manage the memory itself.
Thanks for this post.
niks_5in said:
MANY RECOMMEND TO GET RID OF VIDEOLAG USE TASK MANAGER
Sent from my Desire HD using XDA Premium App
Click to expand...
Click to collapse
Who is many and is he a half wit? Better to use watchdog to kill apps using too much cpu in the background in this instance. A task killer will not help.
--- I am geek. Hear me squeek. ---
I am talking about lag during video recording
Sent from my Desire HD using XDA Premium App

Using Launcher Pro, easier way to close apps faster?

I heard App Killers use memory, so I was wondering is there a way to get a shortcut, or a way to tweak to put what apps I want terminated and that I use on the go all at once or all in the same list? It's annoying to go into settings, then applications, then run and scroll through each one and force stop lol .
Don't force apps to stop. If it's not in use, it doesn't matter if it's in the memory.
Linux operates differently. In Windows you could use up a bunch of memory and it slows things down, but until you get to a critical level your Atrix isn't going to slow down. It's better to let it manage itself, otherwise it will simply start the task over and pull it to the foreground even though it was using no resources happily in the background.
Only close apps if they're erratic or if you want to clear memory for something hardcore like a PSX or N64 emulator, etc.
Trust me. I don't kill apps and used my phone like some sort of newb, but it actually works way better than when I try erratically killing apps all the time.
so even if its in the running tab say like browser and gmail, and say an app that uses gps and data and I close it but don't force stop it, it won't do a big deal on my battery? Sorry im new to all this, very new.
Sent from my MB860 using XDA App
As soon as apps like Maps are out of focus (not immediately running on your screen) the GPS will stop searching. You will notice that Android is more than capable of handling it's own memory management. Just relax and let the OS do it's job. Some things you're killing with a task killer will just be immediately reopened by Android, as it's being referenced by another app. That will kill your battery much more so than just letting Android remove resources from a running app.
tripleh3lix said:
so even if its in the running tab say like browser and gmail, and say an app that uses gps and data and I close it but don't force stop it, it won't do a big deal on my battery? Sorry im new to all this, very new.
Sent from my MB860 using XDA App
Click to expand...
Click to collapse
Divinedark said:
As soon as apps like Maps are out of focus (not immediately running on your screen) the GPS will stop searching. You will notice that Android is more than capable of handling it's own memory management. Just relax and let the OS do it's job. Some things you're killing with a task killer will just be immediately reopened by Android, as it's being referenced by another app. That will kill your battery much more so than just letting Android remove resources from a running app.
Click to expand...
Click to collapse
^^^
This brother is right!
Yep, it's kind of a strange concept. I was so skeptical and yes, sometimes I look at the stuff in the background and still get suspicious. But the battery life and performance speaks for itself. After months and months of it pestering me, I finally submitted. I only kill tasks before running high end console emulators or a couple other apps that require a lot of juice.
It's definitely something that takes time getting used to. I've had an Android for almost exactly a year to this day and it's still a hard concept to grasp. As long as you're not running some crappy program that was poorly coded, it otherwise does a great job.
First Android OS was 1.6/Donut and that wasn't nearly as good as Froyo and Gingerbread. HUGE difference. I'm using an Xperia X10 because my Atrix is currently broken, but I've got CM running Gingerbread and WOW. It's like a completely different phone!! Even just the stock Froyo handles tasks much better. The Atrix is damn near flawless in comparison too.
tripleh3lix said:
I heard App Killers use memory, so I was wondering is there a way to get a shortcut, or a way to tweak to put what apps I want terminated and that I use on the go all at once or all in the same list? It's annoying to go into settings, then applications, then run and scroll through each one and force stop lol .
Click to expand...
Click to collapse
I like Watchdog, http://goo.gl/c4On5. It will tell you if an app needs killing. You can even put a widget on your screen and watch how many apps are running, how many are idle, and what % of cpu is used.
bongd said:
^^^
This brother is right!
Yep, it's kind of a strange concept. I was so skeptical and yes, sometimes I look at the stuff in the background and still get suspicious. But the battery life and performance speaks for itself. After months and months of it pestering me, I finally submitted. I only kill tasks before running high end console emulators or a couple other apps that require a lot of juice.
It's definitely something that takes time getting used to. I've had an Android for almost exactly a year to this day and it's still a hard concept to grasp. As long as you're not running some crappy program that was poorly coded, it otherwise does a great job.
First Android OS was 1.6/Donut and that wasn't nearly as good as Froyo and Gingerbread. HUGE difference. I'm using an Xperia X10 because my Atrix is currently broken, but I've got CM running Gingerbread and WOW. It's like a completely different phone!! Even just the stock Froyo handles tasks much better. The Atrix is damn near flawless in comparison too.
Click to expand...
Click to collapse
Thank you. I have 4 and a half hours with this thing powered on, and screen is on an hour and a half and it's on 50 percent already. Was using maps and just texting that's about it. I keep turning gps off when done.
Sent from my MB860 using XDA App

[Q] Windows Phone 7

I was wondering, now that the bootloader has been cracked, is it possible for WP7 to be installed on the Xperia X10?
**Please no "windows is crap" or "why would you want that?" stuff, I've seen my fair share.**
Who tell you that the bootloader is cracked?
It is just bypassed.
Although I dont know much about wp7,at least I know it is not linux based.
We can only run non stock kernel but noy other computer language things
Cheers,
L
Sent from my rooted FreeXperia X10
Thanks
Oh, that's disappointing. Oh well. Thanks for your help
There is a theme on market makes it like wp7
Sent from my X10a using XDA Premium App
Yeah, I've tried them but they just aren't as responsive as a real WP7 handset. 1GHz processor doesn't really mean anything when the operating system hasn't been optimised - look at iOS and how snappy it feels even on older generation devices, then look at current generation android devices like the Xperia and you really notice how much it lags. Oh, how I dream of a day when I don't need Advanced Task Killer....
maxidude44 said:
Oh, how I dream of a day when I don't need Advanced Task Killer....
Click to expand...
Click to collapse
You don't need it.
ooidort said:
You don't need it.
Click to expand...
Click to collapse
We still need it even in 2.3.3 in some species.
As the ram of our Xperia is very small,sometimes a kill will make the phone smoother,yes,just sometimes,killing those apps that wont restart
Sent from my rooted FreeXperia X10
laill said:
We still need it even in 2.3.3 in some species.
As the ram of our Xperia is very small,sometimes a kill will make the phone smoother,yes,just sometimes,killing those apps that wont restart
Sent from my rooted FreeXperia X10
Click to expand...
Click to collapse
Well you obviously don't know what you're doing.
I'm on a froyo miui rom and NEVER use it and my phone is always smooth as silk.
If you're still using one after 2.2+, you don't know what you are doing
linux/android memory management is boss
wp7 is not responsive, it just uses long drawn out animations to cover up lag/delay. I think it sucks personally
fiscidtox said:
Well you obviously don't know what you're doing.
I'm on a froyo miui rom and NEVER use it and my phone is always smooth as silk.
If you're still using one after 2.2+, you don't know what you are doing
linux/android memory management is boss
wp7 is not responsive, it just uses long drawn out animations to cover up lag/delay. I think it sucks personally
Click to expand...
Click to collapse
Perhaps I dont know what I am doing.
Insufficient ram is one of the dead flaw of our Xperia.
Even though you are using Android 2.2+,this flaw is stilo bitting our mind.
Yes,Android's memory manage sys does work.However,it has no doubt that some laggs can be experinced when such mechanism is working,I am talking about heavy use(available memory is smaller than 80mb?).
Killing some non-restart apps does make you feel smoother no matter what roms
You can see tha why wb's rom is very smooth and FAST?
Autokill is implempted in it.
Also,the definition of lag varies among people.
For me,unless the Xperia smooth lik iphone,I wont be satisfied.
Cheers
L
Ps,Ahh,tricky wp7
Sent from my rooted FreeXperia X10
laill said:
Perhaps I dont know what I am doing.
Insufficient ram is one of the dead flaw of our Xperia.
Even though you are using Android 2.2+,this flaw is stilo bitting our mind.
Yes,Android's memory manage sys does work.However,it has no doubt that some laggs can be experinced when such mechanism is working,I am talking about heavy use(available memory is smaller than 80mb?).
Killing some non-restart apps does make you feel smoother no matter what roms
You can see tha why wb's rom is very smooth and FAST?
Autokill is implempted in it.
Also,the definition of lag varies among people.
For me,unless the Xperia smooth lik iphone,I wont be satisfied.
Cheers
L
Ps,Ahh,tricky wp7
Sent from my rooted FreeXperia X10
Click to expand...
Click to collapse
have you ever used a mac computer?
Just because ram isn't showing free does not mean it isn't there. It keeps apps background but using no actual ram or cpu so they can be quickly opened. If it needs the ram it is easily freed up for other things instantly.
Free ram sitting there doing nothing is actually a waste on a linux based system
fiscidtox said:
have you ever used a mac computer?
Just because ram isn't showing free does not mean it isn't there. It keeps apps background but using no actual ram or cpu so they can be quickly opened. If it needs the ram it is easily freed up for other things instantly.
Free ram sitting there doing nothing is actually a waste on a linux based system
Click to expand...
Click to collapse
Of cous I have used mac,my home has one mac book pro.
I understand your point.Memory not free doesnot mean it cannt be used.
I am concerning the case that heavy use.
Even system freeze( correct me if I use this word wrong) those low priority apps,however,in such case,too much apps to be freezed will make laggy.
So,try it yourself,open msn talk pro,facebook,xda app,browser,poweramp with playing flac,dsp manager and large game(Heavy use enough?)
In the game,switch back to launcher,wow,shouls be laggy(Sys just do what it supposed to do.
Sometimes the memory manage mechainsm can not been done within in a short time,killing some non-restart may make you feel less laggy.
Compare the smoothness when the free ram is 30mb and 130 mb,give it a try
cheers,
L
Sent from my rooted FreeXperia X10
I did, I keep clicking on a bunch of stuff and I'm not getting lag....
Maybe it's the rom you are on? I'm on cob's miui and I literally never experience lag. Then again I haven't on any of the 2.2 or up roms I use. I generally always make full use of the multitasking too
maxidude44 said:
look at iOS and how snappy it feels even on older generation devices, then look at current generation android devices like the Xperia and you really notice how much it lags.
Click to expand...
Click to collapse
I threw up a little bit in my mouth when I heard this. Have you used a 3g iPhone since ios4 came out? Its the slowest smartphone I have ever experience, jailbroken or not. The xperia runs circles around that. Why would you prefer no multitasking or flash over what you have currently?
Sent from my SGH-I897 using XDA App
fiscidtox said:
I did, I keep clicking on a bunch of stuff and I'm not getting lag....
Maybe it's the rom you are on? I'm on cob's miui and I literally never experience lag. Then again I haven't on any of the 2.2 or up roms I use. I generally always make full use of the multitasking too
Click to expand...
Click to collapse
All the 2.2,2.3 rom here have tasted by me.
Are you really sure that you have completely no lags(not even a very very tiny) when your free mem is below 30?
If so,okay,as I have mentioned,definition of lag varys amomg people><
Sent from my rooted FreeXperia X10
laill said:
All the 2.2,2.3 rom here have tasted by me.
Are you really sure that you have completely no lags(not even a very very tiny) when your free mem is below 30?
If so,okay,as I have mentioned,definition of lag varys amomg people><
Sent from my rooted FreeXperia X10
Click to expand...
Click to collapse
the launcher gives me no lag, maybe an app opening might take a millisecond more but thats negligible and doesn't bother me
fiscidtox said:
Well you obviously don't know what you're doing.
wp7 is not responsive, it just uses long drawn out animations to cover up lag/delay. I think it sucks personally
Click to expand...
Click to collapse
Please do remember that I stated "**Please no "windows is crap" or "why would you want that?" stuff, I've seen my fair share.**"
I got rid of my task killer after I went on 2.2 read in another post its supposedly bad for the phone but I'm no dev so I wouldn't know. But I've had no problems without it.
Sent from my X10a using XDA Premium App
laill said:
Perhaps I dont know what I am doing.
Insufficient ram is one of the dead flaw of our Xperia.
Even though you are using Android 2.2+,this flaw is stilo bitting our mind.
Yes,Android's memory manage sys does work.However,it has no doubt that some laggs can be experinced when such mechanism is working,I am talking about heavy use(available memory is smaller than 80mb?).
Killing some non-restart apps does make you feel smoother no matter what roms
You can see tha why wb's rom is very smooth and FAST?
Autokill is implempted in it.
Also,the definition of lag varies among people.
For me,unless the Xperia smooth lik iphone,I wont be satisfied.
Cheers
L
Ps,Ahh,tricky wp7
Sent from my rooted FreeXperia X10
Click to expand...
Click to collapse
It's not the RAM, it's mostly the CPU + FPS Cap that causes or x10 to be/look slow. SE hasn't put much work in our 2.1 firmware. Only 1.6 was some kind of work.
maxidude44 said:
Please do remember that I stated "**Please no "windows is crap" or "why would you want that?" stuff, I've seen my fair share.**"
Click to expand...
Click to collapse
You crap all over android and say this so I'm allowed to have my say as well
maxidude44 said:
Yeah, I've tried them but they just aren't as responsive as a real WP7 handset.
Click to expand...
Click to collapse
fiscidtox said:
wp7 is not responsive, it just uses long drawn out animations to cover up lag/delay. I think it sucks personally
Click to expand...
Click to collapse
Isn't that windows OS run on Intel kind of CPU, what CPU is SE phone?
Sent from my X10i using Tapatalk

an app for closing applications automatically

hi
please give me an app for closing applications automatically for more space ram
thanks
http://lmgtfy.com/?q=android+application+to+free+up+ram
Why?
Android will handle the memory by itself if needed.
Got to ask why? As said above it manages its own memory. Free ram is wasted!
Sent from my GT-N7000
PJ147 said:
Got to ask why? As said above it manages its own memory. Free ram is wasted!
Sent from my GT-N7000
Click to expand...
Click to collapse
And i.say why not. Why let the system manage the ram. The ram manage is poor. They are apps that that always run on its self but they a not used all the time and that's why its good to have a app killer. I using ES task manger its free and good.
Sent from my GT-N7000
testacount said:
And i.say why not. Why let the system manage the ram. The ram manage is poor. They are apps that that always run on its self but they a not used all the time and that's why its good to have a app killer. I using ES task manger its free and good.
Sent from my GT-N7000
Click to expand...
Click to collapse
for the last time android handles its RAM well, free RAM is completely wasted, it keeps apps running so you can quickly re open them...its called multitasking.
If a app (like a game) is opened that needs alot of RAM the manger just kills some apps to free enough RAM for it.
There is no need for free ram at all its doing NOTHING
testacount said:
And i.say why not. Why let the system manage the ram. The ram manage is poor. They are apps that that always run on its self but they a not used all the time and that's why its good to have a app killer. I using ES task manger its free and good.
Sent from my GT-N7000
Click to expand...
Click to collapse
It is well known that most automatic task killers actually cause poor performance and battery life because they don't allow the OS to manage itself properly.
Task killers do have a place in killing errant processes, but never automatically.
Remember, just because a process is "running" doesn't mean it is consuming any CPU cycles, and as has already been mentioned, free RAM is wasted RAM.
Regards,
Dave
Sent from my GT-N7000 using Tapatalk 2
I do not agree
If free RAM is wasted RAM, then why does phone get fast and more responsive when you clear RAM from (default) task manager ?
It means free RAM is doing something.
If free RAM was wasted RAM, phone should be always running snappier with everything kept in the memory. But it does not.
I never used any third party task manager though, but tweaking LMK always yieds better performance. That means default memory management is not so good.
Boy124 said:
I do not agree
If free RAM is wasted RAM, then why does phone get fast and more responsive when you clear RAM from (default) task manager ?
It means free RAM is doing somthing.
If free RAM was wasted RAM, phone should be always running snappier with everything kept in the memory. But it does not.
I never used any third party task manager though, but tweaking LMK always yealds better performance. That means default memory management not so good.
Click to expand...
Click to collapse
If your device it slowing down when less ram is free then you have a rouge app taking up processing time, its processing time that slow down the phone NOT free ram, when a app is 'running' in the background it shouldnt be using any processing time however some rouge apps do not manger this well at all and keep running processors
ES Task manager from Google play. Just put system apps to ignore list. But...
Sent from my GT-N7000 using Tapatalk
zacthespack said:
If your device it slowing down when less ram is free then you have a rouge app taking up processing time, its processing time that slow down the phone NOT free ram, when a app is 'running' in the background it shouldnt be using any processing time however some rouge apps do not manger this well at all and keep running processors
Click to expand...
Click to collapse
Methinks the word you are looking for is rogue, unless you really mean "red" apps!
Apologies - pet hate of mine on this site, but.nowhere near as much as the "loose when they mean lose" brigade!
Regards,
Dave
Sent from my GT-N7000 using Tapatalk 2
foxmeister said:
Methinks the word you are looking for is rogue, unless you really mean "red" apps!
Apologies - pet hate of mine on this site, but.nowhere near as much as the "loose when they mean lose" brigade!
Regards,
Dave
Sent from my GT-N7000 using Tapatalk 2
Click to expand...
Click to collapse
I do yes, sorry being dyslexic is never good on forums
It's not needed. Consider the RAM as some food. The food not eaten is just wasted food. Unused RAM is just wasted. When you run an app or game that needs much more RAM, some other apps are killed. Android manages it's RAM really very efficiently. Specially on note, I never have to use any app killer.
Edit: Task killers do nothing but use more CPU and decrease battery life. If you kill 10 'good' apps with X task killer, and then have to open them again, you are doing nothing but using CPU cycles and battery to reopen the same apps that you closed. You walk 10 miles and then come back from where you started for no reason and again walk the same 10 miles just consume more energy, apart from making you look like a complete fool. Do not use task killers. Just check if you got a bad app.
Sent from my GT-N7000 using XDA
testacount said:
And i.say why not. Why let the system manage the ram. The ram manage is poor. They are apps that that always run on its self but they a not used all the time and that's why its good to have a app killer. I using ES task manger its free and good.
Sent from my GT-N7000
Click to expand...
Click to collapse
But when you kill these "not used" apps the system will have to reload from scratch when required consuming more CPU (and battery) most apps task killers say are running are mearly cached. Read up on this as it is different from running. Android is not windows!

Categories

Resources