Android :: Wake Lock / Phone Restarting Randomly
Jan 28, 2010
I have a service which holds on to a wakelock and the code is similar to this,
public class WakeLockService extends Service {
PowerManager.WakeLock wl;
@Override
public IBinder onBind(Intent arg0) {
// TODO Auto-generated method stub return null;
} public void onCreate() {
PowerManager pm = (PowerManager) getSystemService (Context.POWER_SERVICE);
wl = pm.newWakeLock (PowerManager.PARTIAL_WAKE_LOCK, "My Tag");
wl.acquire();
} public void onDestroy() {
wl.release();
}
For past two days, my phone has been restarting randomly. Today it was worse, it kept restarting until I uninstalled the app. I tried to search about this behaviour online and found that too many wakelocks may coz the phone to restart. Can there be any other reason? Is the above code right? Should make wl as a final variable? Does the service call onDestroy method when phone shuts down? I am using a broadcastreceiver to start my service at boot up as well.
View 8 Replies
Aug 26, 2010
I know there are other threads but this is strange since my phone never ever did this. All of a sudden the last two days my phone has been restarting randomly, mostly like two minutes into using the phone. It doesn't though go to the HTC Incredible screen but rather the HTC Quietly Brilliant, quickly to Verizon Wireless screen and into the OS. I see the CPU doing heavy duty work using all but 100% yet I checked System Panel and I don't see anything using that much usage. Again this has just started the last two days or so. Never before have I had this problem. Anyone else just in the last few days?
View 5 Replies
View Related
Sep 20, 2009
1) I can press a button to 'wake' up the phone to the lock screen, but I may have to press a button 2 or 3 times to wake the phone up. it seems like it's not waking up correctly and on the first button press.
2) Twitter and other notifications 'sometimes' dont happen until I unlock the screen...this COULD be coincidence, but I thought I would throw it out for people.
3) I didnt get a voicemail given on Friday until today, which appeared as a result of me switching off my phone and switching it back on. has anyone else heard of this???
4) I cant figure out a way to stop apps from starting on bootup, such as peep? I use twidroid, so dont need two apps running of the same ilk?? Any help here?
Thanks in advance guys.
View 3 Replies
View Related
Feb 4, 2010
I've had my Droid for a little over 60 days, and I've recently started seeing what I consider a Major issue. This aside, I Love my Droid, but I've been ready to throw it through a wall lately. It's been restarting at LEAST 10, maybe even up to 20 times a day. I uninstalled every app I had on it to see if maybe it was an app causing the problem. I hadn't downloaded any new ones before I started noticing it, but it was worth exploring.
So far, it hasn't helped at All. It's still randomly restarting all the time. I don't even have to do anything with it. It's restarted 4 times in a row just sitting on my lap while I was driving home. I've heard my "Droid" notification and checked it, seeing that it was preparing the SD card. I've left it sitting and came back to it to find it's not running any of the pages I had up when I last put it down, etc.
View 4 Replies
View Related
Jun 14, 2010
I'm developing an app in which i need the TCP connection to stay alive. I've implemented a kind of ping/pong system to do this. It works perfectly when the screen is on, but when it goes of the phone stops responding to the pings after a while. I've created a Wi-Fi wake lock but i'm still experiencing still the same problem. Code...
View 1 Replies
View Related
Sep 15, 2009
When I use wake lock to screen at the specific time on the device as follows code. But every time I release this wake lock, the screen will force to close. I think it must to release the wake lock, or screen will always on. It's wasting power. Does anyone knows how to release the screen wake lock and don't need to close the screen?
View 2 Replies
View Related
Dec 18, 2009
I have a question about alarms used with services with regards to wake locks. The documentation explains the behavior using BroadcastReceivers, a wakelock is held during onReceive(), but doesn't describe the behavior for alarms starting services with the RTC_WAKEUP flag. What is the behavior in this case?
I have an app implementing this, an alarm is created with the RTC_WAKEUP flag that starts a service. The service onCreate() then starts a thread to do some network activity. It seems to work just fine but I just want to make sure that I don't need to explicity hold a wakelock myself.
View 4 Replies
View Related
Jun 9, 2009
My app requires alerts at certain events, which are very likely to happen while the screen is off. It captures those event perfectly, however, I'm struggling to hide the T-Mobile screen lock after I've acquired wake lock from the PowerManager. I've tried broadcasting Intent.ACTION_CLOSE_SYSTEM_DIALOGS, however, that seems not to work.
View 2 Replies
View Related
Aug 29, 2009
I'm acquiring a wake lock and apparently, it gets garbage collected in my app at some point with the following error;
code:...........
What is the recommended approach to overwrite the finalize to force releasing the lock or -better- force the GC not to release the lock ?
View 2 Replies
View Related
Jan 20, 2009
The accelerometer turns off when the screen is off. I'm guessing this is a bug but I haven't seen it logged. Am I missing something?
Perhaps the power management features need some improvement - the ability to specify what components are needed during a partial_wake_lock so that power can be conserved as efficiently as possible.
BTW, there is a bug logged noting that onSensorChanged() continues to be called for the orientation sensor (during sleep) but the values are not being updated.
View 6 Replies
View Related
Aug 13, 2010
I have a problem. I am trying to make a broadcast receiver acquire a wake lock so my alarm will wake the phone from sleep mode.
In the broadcast receiver below, the program crashes with "source not found" on line "sCpuWakeLock.acquire(); when the class "AlarmAlertWakeLock" is called by AlarmReceiver.
Any idea what's going on? Is there a better way to do what I'm trying to do?
In one file:
CODE:..............
In a separate file:
CODE:......................
View 1 Replies
View Related
Apr 5, 2010
Since 1.5 I've been having partial wake problems. My eris normally will last a few hours in airplane mode or with just wifi on before the battery drops one or two percent. Sometimes, it will drop like 5 percent in an hour with low battery usage occuring, for example, when airplane mode is on. I check spare parts under partial wake usage, and it is usually very high, sometimes 100% after hours. I have to reboot my phone to fix these problems.
View 2 Replies
View Related
Jul 20, 2010
My Droid-X just randomly rebooted with plenty of battery left. Has anyone else experienced this? If so, any difference before and after the update?
View 6 Replies
View Related
Jun 24, 2010
Need some help with phone locking behavior, good peoples. here's what i'd like to end up with:
1. always wake based on volume OR power button
2. when on phone - no locking at all, (additionally wake based on orientation like is done currently)
3. some sort of "lock phone" widget on home screen for manual lock
4. auto-lock timer set to say...5 minutes (longer than sleep timer)
5. sleep/screen-off timer set to 30 seconds
6. disable the slide lock (sense UI?) and only use the pattern lock. why do i have to power button wake, slide unlock, then pattern unlock my phone after it goes to sleep after 30 seconds, it's ridiculous! i want to pick it up press a volume key and put my pattern in - after 5 minutes. before 5 minutes i want to just pick it up and wake it unless it was manually locked.
I'll root it if that's what it takes. this is pissing me off daily.
View 4 Replies
View Related
Apr 6, 2010
I'm getting wake times near 100% with this ROM and I don't have the first clue why. I wiped and installed properly, and I have autokill set to optimal. Not runinng setCPU or anything, and I've never had this problem before so I don't think its an app.
If anyone could help, I would REALLY appreciate it. I tried dc2.05, but now I have the no audio issue on phone calls from this ROM, so I had to switch back for the fix -.- Really frustrated and really need a working ROM + phone =
AlwaysFlash seems to be the problem, uninstalled and wake time seems to be staying low under all circumstances.
View 17 Replies
View Related
Nov 13, 2009
I have a vanilla Hero. Since I bought it (around 2 months ago), the awake time has NEVER been under 100%. I installed the Modaco 2.9 ROM yesterday (which I highly recommend; my Hero is now much faster) and it's STILL 100%.
Spare parts tell me that the culprit appears to be 'Android system'.
I'd like to reduce my wake time if it's at all possible.
I'm aware of the messaging app/dialer issue; that's not what this is, since I'm using CHOMP sms and it's still an issue.
View 9 Replies
View Related
May 9, 2012
Closest thing I can find is Popup Notifier, but not only does it wake up the device, it leaves a ton of popups when unlocked. I would rather have popups on the lock screen.
View 2 Replies
View Related
Dec 1, 2010
After noticing my battery was draining quickly, and then after reading this thread, I installed Android System Info to see what was draining my battery so fast. I notice that whenever I would turn on WiFi, the phone will never go to sleep , regardless of what I set the WiFi sleep policy to. After turning off WiFi, the battery still drains heavily.
The WiFi will shut off after 15mins (if you set it to "When screen turns off" or "never when plugged in"). However it seems to keep the CPU on causing it to drain down the battery.
It would seem that whenever WiFi is enabled, the Android system process creates a partial wakelock that does not go away even if you turn off WiFi. The only way to resolve this is by powering off or rebooting the phone.
You can verify this in Android System Info by going into Battery-History-Other Usage-Partial Wake usage to see how much time the "Android System" process holding a partial wake.
I even did a factory reset on the device; and it is still happening so it doesn't appear to be any app that caused the issue. As I said, it works fine as long as I don't enable WiFi.
I already know of two users having this issue, but I'm wondering if folks having battery problems are going through this as well. Is anyone else having similar issues after using WiFi? I'm hoping someone will be able to identify what exactly is putting the wakelock on and we'll be able to find a fix for it. Other than not using WiFi at all or rebooting the phone after using Wifi.
View 17 Replies
View Related
Jul 24, 2010
when i press the home key/close an app the password lock screen appears and it's annoying. Also the volume level doesn't affect my text message notification. long story:A week ago sprint told me to factory reset my phone to get rid of the error 67 problem, ever since then i've had this problem. So they told me to factory reset it again and the problem continued. then they sent a replacement and now i'm still getting the problem before i installed any apps. the SD card is the same though. So i'm confused and don't want to delete everything from the sd card.
View 1 Replies
View Related
Sep 7, 2010
Any Android Agenda Widget users here? Downloaded the newest update today (there were a few updates in succession, I think) and it's causing my Droid X to not sleep and it's showing up as Partial Wake Lock the entire time my phone is on. I emailed the developer, but if others are seeing this, please do so as well. It's probably killing many batteries right now.
View 2 Replies
View Related
Jun 14, 2009
I am trying to implement a wake lock for an application.
PowerManager pm = (PowerManager) getSystemService(Context.POWER_SERVICE);
PowerManager.WakeLock wl = pm.newWakeLock(PowerManager.FULL_WAKE_LOCK, "My Tag");
It seems to force close when defining the PowerManager shown in the code above. Whats going wrong?
View 1 Replies
View Related
Sep 11, 2009
Is there anyway that you can get the screen to "wake" from just touching one of the softkeys and then enter the screen unlock pattern, rather than having to use the dedicated lock button on the side?
It's pretty annoying, especially if the phone is lying on the table and u just wanna look at the screen you cant just mash one of the softkeys.
View 9 Replies
View Related
Jun 23, 2010
I have an HTC desire with Orange in the UK and up til now it's been pretty fantastic. For the last couple of weeks though, it goes through fazes daily of just switching off mid-use and restarting 5 or 6 times in a row. Sometimes it boots up fully before restarting, sometimes it cuts out mid start-up and goes again....it's rather annoying as I'm sure you can imagine!
View 3 Replies
View Related
Aug 16, 2010
After rooting my evo, i installed the ava froyo everything was working but now the phone just keeps restarting every 3 minutes and pc won't recognize, also when charging phone shoes amber led (charging) light but the battery icon won't shows as charging. Try to go back to stock rom but can't because pc does not recognize the evo. When trying to open the command window and sending the code it gives me the error message device not found.
View 6 Replies
View Related
Nov 7, 2009
While sitting on my desk(both being charged & not), my Hero restarted itself 3 times in 2 days. Is this an automatic update, or some problem?
View 3 Replies
View Related
Aug 15, 2010
I've tried hard reseting, nandroid restores and wiping all my data but my phone still won't boot. I had cyanogen 6 Rom installed on it and when I turned it on this morning the usual animation came up but after a minute it froze and kept restarting. I then tried all the things above and now it only gets the first solid looking X image and it doesn't move on to the animation. I have a feeling it was Rom manager that caused this as I clicked fix permissions last night.
View 1 Replies
View Related
Jun 15, 2010
My Evo restarts when I open some programs. Mostly my GPS navagation programs, which is very annoying when you are trying to get some place. Lucky it does not take long to reboot.
View 1 Replies
View Related
Jun 21, 2010
I've had the ally about 2 weeks now and about once a day it will re-start on its own. it sucks because sometimes I'll be in the middle of something. anybody else have this issue?
View 21 Replies
View Related
Mar 22, 2010
Over the last few days, I've noticed my phone spontaneously restarting itself. It's happened at least 3 times since Friday, but those are the occasions it happened to be in eyeshot/earshot when it happened, so who knows how many times it's actually occurred.
I notice it also shows my up and awake time as being identical a little over 2 hours (which is how long it's been since the last random restart). It's been a bit laggier than usual, too. Not sure if either of those things are relevant or not, but thought I'd point them out.
View 8 Replies
View Related
Oct 7, 2010
had my evo on charge and went to sleep with remote pc running, when I woke up it was really hot and kept restarting at the 4G animation. I mean, it was seriously on repeat, says 4g, then starts over again, then sprint 4g and restart. I can't get it to boot. I've tried booting with the usb connected, sd card in and out, everything. Nothing works. I even went to the recovery like I was doing an update to get it to at least reflash the firmware or something and it fails. Keep in mind, I updated a couple weeks ago with the newest EVO software manually (the one without the fps cap), so the file should still be on the SD card exactly how it was when I updated the software last.
This is what it gives me:
E:can't open /cache/recovery/command
E:can't mount DATA:data/recovery/log
--Install from sdcard...
Finding update package...
Opening update package...
Verifying update package...
E:failed to open /sdcard/update.zip (No such file or directory)
E:signature verification failed
Installation aborted.
E:Can't mount DATA:data/recovery/HTCFOTA/update_result.log
E:Can't mount DATA:data/recovery/OMADM/update_result.log
E:Cant mount DATA:data/recovery/log
View 8 Replies
View Related