General :: Application Which Forces All Processes To 0% Cpu Usage When Idle
May 26, 2013
My idle cpu usage seems a little high and sporadic and I'd like to force them all to 0% when idle but still be able to receive background data like for instance my play store seems to use a continuous idle usage and a few others. I can freeze them with the System Tuner but I'd prefer to Globally force all apps to 0% usage so I'm getting say 1% usage at idle on occasion every hour or few hours? When I use System Monitor, I see my cpu usage kind of jumping from 0 to up to 35-40% while idling and I don't want these apps using any resources at idle. I'm trying to extend battery life a lot more.
My battery life is really good already since I have a 3600mah battery but I could get even better if I can dial in the usage at idle.
Is there application that can do that?
On another note, I can't seem to figure out why my Google Calendar won't open a "New Event" it just sits on the Loading... Screen
View 6 Replies
Nov 4, 2013
my active applications are: 0
then i go to RAM tab, i press CLEAR MEMORY.. after clearing.. my RAM status is 594MB / 788MB
is there a way to lower it down to lets say 300MB?
View 5 Replies
View Related
Oct 20, 2010
Is there a process manager or task viewer for android that shows how much CPU percentage each process or even each thread in a process takes up?
View 1 Replies
View Related
May 6, 2010
I'm looking for something like the ASTRO processes manager that shows the current %CPU usage for every app running on the system. The only problem with ASTRO is that it doesn't sort by CPU usage so I have to scroll up and down looking at the % to see what is taking up CPU. A simple app that shows this information sorted by current CPU (like the top command in unix) would be great.
View 6 Replies
View Related
Aug 8, 2010
For me, it would be K9 Mail. What about you all?
View 7 Replies
View Related
Jul 2, 2009
I have uploaded application to market and met weird problem which I never received before - when I click "Open" button when the application is installed I receive error dialog and the application is forced to close. I do not have this problem when start application from desktop launcher panel. I have already receive 2 stars for that though the exception even comes not from my cod - very unpleasant surprize from market app.
Application uses vibration and declares corresponding uses-permission "android.permission.VIBRATE" - this is what the exception tells me about, but I can't see such problem with other apps that use vibration on market.
Here the exception:
CODE:..............
Here is application manifest:
CODE:.........................
View 2 Replies
View Related
Oct 3, 2010
I am new with Android, and writting a small application for tracking call events. Every time i try to bind the listner, the os forces the app to close unexspectly. What did i miss? Here is my code:package com.example.helloandroid;
import android.app.Activity;
import android.content.Context;
import android.os.Bundle;
import android.telephony.CellLocation;
import android.telephony.PhoneStateListener;
import android.telephony.ServiceState;
import android.telephony.TelephonyManager;
import android.widget.TextView;public class helloAndroid extends Activity {
TextView textOut;
TelephonyManager telephonyManager;
PhoneStateListener phoneStateListener;
@Override
public void onDestroy(){
telephonyManager.listen(phoneStateListener, PhoneStateListener.LISTEN_NONE);
}/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
// Get the UI
textOut = (TextView) findViewById(R.id.textOut);
// Get the telephony manager
telephonyManager = (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE);
// Create a new PhoneStateListener
phoneStateListener = new PhoneStateListener() {
public void onCallForwardingIndicatorChanged(boolean cfi) {}
public void onCallStateChanged(int state, String incomingNumber) {}
public void onCellLocationChanged(CellLocation location) {}
public void onDataActivity(int direction) {}
public void onDataConnectionStateChanged(int state) {}
public void onMessageWaitingIndicatorChanged(boolean mwi) {}
public void onServiceStateChanged(ServiceState serviceState) {
String stateString = "N/A";
switch (serviceState.getState()) {
case TelephonyManager.CALL_STATE_IDLE:
stateString = "Idle";
break;
case TelephonyManager.CALL_STATE_OFFHOOK:
stateString = "Off Hook";
break;
case TelephonyManager.CALL_STATE_RINGING:
stateString = "Ringing";
break;} textOut.append(String.format("
onCallStateChanged: %s", stateString));
} public void onSignalStrengthChanged(int asu) {}
}; // Register the listener with the telephony manager
telephonyManager.listen(phoneStateListener,
PhoneStateListener.LISTEN_CALL_FORWARDING_INDICATOR |
PhoneStateListener.LISTEN_CALL_STATE |
PhoneStateListener.LISTEN_CELL_LOCATION |
PhoneStateListener.LISTEN_DATA_ACTIVITY |
PhoneStateListener.LISTEN_DATA_CONNECTION_STATE |
PhoneStateListener.LISTEN_MESSAGE_WAITING_INDICATOR |
PhoneStateListener.LISTEN_SERVICE_STATE |
PhoneStateListener.LISTEN_SIGNAL_STRENGTH);
View 1 Replies
View Related
Sep 27, 2010
After searching, I was unable to find any post that deals with my particular problem, and I don't know if it's a problem or something I have to deal with. On my LG Eve (unlocked, not yet rooted), when I run Task killer, I notice that there are two items in the list that look like configuration files (window with a gear in front of it):
com.tni.Task killer:Captain Obviously, the first one is linked to Task killer and if I kill the configuration file, it kills the Task killer process. When I try to kill beware.com, though, it does nothing. The file remains in the list and is also visible in the Task killer widget. (Speaking of the widget, when I kill Task killer, the icon for the 2 configuration files usually remain, even if I auto kill everything.) Doing a little searching on the tubes, I found that beware.com are the developer for Quick Settings. I don't think I downloaded that app yet, but I might have and subsequently deleted it. Is it possible that the configuration file remains after I un install an app? If so, how do I remove that con fig file?
View 1 Replies
View Related
Mar 4, 2010
Some times after installing my application and first running my application is creating two processes as follows.
CODE:................
View 4 Replies
View Related
Nov 2, 2010
In my application there are three activities A -> B -> C -> A. I want to detect application's idle time, so that after 15 mins it will pop up a message irrespective of activity. what is the best method to implement this.
View 2 Replies
View Related
Jul 16, 2012
how to get the battery usage per application.I want to implement battery usage per application in code. So I need idea how I should work to get this. I am not searching for app shows battery usage. I want to implement one such app.
View 7 Replies
View Related
Nov 30, 2012
Im looking for an application to monitor data usage, i know there are a lot but im looking for one specifically,
My plan is in fact 2 plans, it is unlimited for social networks (1GB @ 4G then EDGE till month expires), and 100Mb for any other applications.
View 2 Replies
View Related
Mar 16, 2010
I would like to share a cache file across activities, which are running in different processes but in a same application.So, is there any way to make it thread safe (probably not "thread safe", should we call it "activities safe" or "process safe" ?
View 2 Replies
View Related
May 19, 2010
I'm building a google map application that marks several points on the map. I'm currently trying to get the dialog box to appear when the marker is clicked. Right now, the markers appear at the right places but when i click them, the entire application stops unexpectedly/forced to close.Does anyone have any suggestions on what is wrong and how i should go about fixing it?
View 1 Replies
View Related
Mar 14, 2014
I have a Motorola XT626 (IronRock) its a dual sim (Iden/gsm-3g) with android 2.3.6.At first time, both SIMs, nextel and the other carrier, if putted from the beginning there is no problem. But when trying to change the SIM, to use an other phone number or upgrading the SIM model.It forces to erase private data.Message says: "A new SIM card is being used. All private data must be cleared before you can continue"If no option its selected it erases it, hate to do a backup to just change the SIM or imposible to change the SIM on the fly.Its Rooted, so looking forward to edit any file and line in the db files to fix this problem.
View 1 Replies
View Related
Feb 13, 2013
I have a GS2 skyrocket running CM10.1 and i've read that task managers are rather obsolete now. However I have noticed that when I let my phone run standard app process limit the battery life is around 30% worse than when I set the app limit to 4 processes in the developer settings. Now that I have CM10.1 and it doesn't have developer options, i'm wondering what I can do to limit my processes down to conserve battery?
View 1 Replies
View Related
May 10, 2014
i have Samsung Galaxy Y Duos GT-S6102 Android 2.3.6.
I am using the Stock ROM, My mobile is rooted.
I am also using GO Launcher EX and Go Locker.
When i am using my phone for a while it is fast, for example switching the AppDrawer screens, Open Messenger close it again, Go to home screen instantly after pressing ( Home ).but when i leave my mobile for a while ( 10min + ) it become slow ( when i unlock the screen the Home screen appear after a while, the app drawer take long time to load and is laggy while switching screens, opening an application take a while too.
Notes :
1- I Don't have any Auto-Task killer applications ( i had before but uninstalled it )
2- I noticed that my phone lose Internet Wifi connection too, because when i open FB messenger it show me the "Connecting" message.. i also doesn't receive notifications after leaving my phone idle for a while.
3- When i unlock the phone and start using it the notifications are revived ( delayed notification )
View 4 Replies
View Related
Jul 9, 2013
how can i trace my recovery partitions all stuff, work ,process etc.? I want to know what is going on while i am entering to recovery. Because this partition is encrypted and i hope i can get some info from this trace stuff for reading the file system of the partition. My tablet running Android 4.0.3, Rooted.
View 3 Replies
View Related
Jun 24, 2013
I know the android memory management is quite good, but is there an option for how many tasks are kept in the background before killed even if there is enough RAM?Is this possible by not using the setting in the developer options but some init.rc tweak?
View 3 Replies
View Related
May 24, 2013
What is the usage each of this processes and services running in background as below? They use about 61 M of my RAM!
As you see there are 5 services for GO SMS Pro! Why this services begin running after reboot? For google services also a service named android core apps begin running.
View 3 Replies
View Related
Jun 22, 2010
I am running the new EVO on Sprint, not rooted, and I am looking for an application that can display active (and perhaps historical) network bandwidth usage based on the application(s) utilizing it.
So far the only one I have manged to come across is "NetMeter" from the market. While this shows active network activity, it does not single out applications.
Trying to figure out what's whoring out the bandwidth on my phone and how I can fine-tune the problematic applications. As I type this I am looking at ~10min of 3G usage totaling over 15MB so far, and from what I can tell I am not running anything that would require the downloading of said data chunk!
View 4 Replies
View Related
Sep 20, 2010
How to get application usage statistics on android? What I want is to access the time (in milliseconds) that each application is used.
View 3 Replies
View Related
May 10, 2014
My mobile information.
Samsung Galaxy Y Duos GT-S6102
Android 2.3.6.
I am using the Stock ROM, My mobile is rooted.
I am also using GO Launcher EX and Go Locker.
Each time i lock my phone and keep it for a while ( 15 minutes or more i think ) The Facebook Messengers and Whatsapp's Background service closes automatically, which lead that i don't receive any notifications.
BUT .. When i unlock the phone the service restart and opens again, but this made me lose many conversations because i didn't receive the notification. And Here is a test i made :
1- Lock the phone
2- keep messaging periodically my phone and i kept receiving notifications for long time ( 1 hour + )
3-but when i stopped sending myself messages and the phone was idle for 15min+ then i messeged my phone again, no notifications were received
4-after i unlock the phone and then i instantly gone to "Running Service tab" to check the service i found them " Restarting".
5-after they finished their restart i received the missed notifications.
Note : I Don't have any Auto-Task killer applications ( i had before but uninstalled it )
View 2 Replies
View Related
Feb 11, 2014
I have an AT&T Samsung Note 3 SM-N900A running Android 4.3 (baseband version N900AUCUBMJ5, kernel v3.4.0-1625098). I rooted it using Kingo, installed Tasker (with Secure Settings plugin), and created 2 profiles: one with a 'Home' location context, and one with a 'Work' location context. In the 'Location Edit' map screen for each, I set a pinned location w/ a radius of 200m. I also de-select 'GPS' (leaving only 'NET'), since I don't want GPS enabled all the time (to extend battery life). I confirm that these work when I'm actively using the phone.. the profile becomes active when I'm at the specified location (as expected). I know it's active because it's displayed in the Notification Panel (and it's also shown in green in the Tasker profiles list).
The issue I'm having is that after ~10 minutes of idle time (i.e. when the display is off and I'm not using the phone), I find that the profile is no longer active when I turn the display back on and start using the phone again. I confirmed that this *doesn't* happen after 1 minute, 2 minutes, nor 5 minutes, only > 10. I also confirmed that it happens for both profiles consistently. However, as soon as I start Tasker again from the Apps Drawer (or from Recent Apps screen), the profile is immediately activated again, and my Enter task is re-run.
I enabled the run log in Tasker prefs, but it basically shows a clean activation of the profile (with no warnings or anything that looks weird to me).
I know there's a 10-minute timeout in the Display Off Monitoring prefs, but that doesn't seem to be related to my issue. I tried reducing the All Checks Seconds from 600 to 90, rebooted the phone, and it still took ~10 minutes before the profile would become inactive after the phone being idle.
View 1 Replies
View Related
Dec 15, 2012
My data connection goes into idle mode if I don't use it and stops downloads... How can I prevent it?? K-Touch E619
View 5 Replies
View Related
Aug 6, 2012
I've been flashing ROMs built on the latest code for Jelly Bean (4.1.1). (The phone is the Galaxy Nexus LTE.)
The battery has been draining fast and upon checking with OS Monitor, I learned that a bunch of android.process.acore processes, sometimes alone and sometimes with another, have been registering high CPU loads continuously until they run the battery down.They are Contacts Storage, User Dictionary, and DRM Protected Content Storage. (DRM is probably not an acore service but it is making trouble just the same.)
I tried winnowing down the problem by deleting the contact store data and resyncing while de-activating third party syncers like HacSync. I even tried cleaning up the contacts via Google on the web. The contacts number only a few hundred. Again, the processes up claiming huge load after the initial sync period.
I scoured the web for reports but have only found mentions dating back to Gingerbread or ICS involving Facebook. Facebook sync doesn't work with JB and again, I have disabled HaxSync.
I also froze User Dictionary with Titanium Backup but that did nothing to keep the process from running, even after a reboot.
View 2 Replies
View Related
Nov 21, 2012
When i put my android tab idle it screen turn off(idle mode) internet disconnects i saw there is no power in the dongle(means no light is glowing from the dongle)
What to do my tabs specs are
ICS 4.0.4
Mali 400
allwinner a13 1GHz processor
512 ram
View 3 Replies
View Related
Jul 29, 2010
Is there an app that shows what is using the battery? On my Droid it would actually show what was using the battery: Display, slacker, dolphin, live wallpapers, etc. On my X when I check battery usage the only thing it ever says is: display, cell standby, phone idle. It never shows live wallpaper, slacker, or anything else I run. I am wondering how much battery these other apps are using, particularly the live wallpaper. Any suggestions for a 3rd party app I can run for a couple days to see what is really using my battery.
View 4 Replies
View Related
Mar 12, 2010
Can anyone say me the main difference between intent and pending intent? And their usage in application with example.
View 2 Replies
View Related
Oct 5, 2010
On my contract I think I've got 500mb Internet. Is there a app that will tell me how much mb I have left? I don't mind paying but free will be even better.
View 2 Replies
View Related