I'm using for my Android Service an Handler that reapeat some operation each 60 minutes (1 hour), with a PartialWakeLock to keep the phone not sleeping. But this cause a lot of battery usage.

So a decided to study about AlarmManager (i'm noob) that someone wrote here to be perfect for this kind of things..

But now reading along the web i find that who uses AlarmManager, still need a WakeLock. Is it true?

What is the best way to run a cycle each 60 minutes (1 hour), without kill the battery?

Thanx

P.S.

AlarmManager Android Developer

The Alarm Manager holds a CPU wake lock as long as the alarm receiver's onReceive() method is executing. This guarantees that the phone will not sleep until you have finished handling the broadcast. Once onReceive() returns, the Alarm Manager releases this wake lock. This means that the phone will in some cases sleep as soon as your onReceive() method completes. If your alarm receiver called Context.startService(), it is possible that the phone will sleep before the requested service is launched. To prevent this, your BroadcastReceiver and Service will need to implement a separate wake lock policy to ensure that the phone continues running until the service becomes available.

But so seems that i need 2 wakelock vs just 1 wakelock using handler....is it true?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

I have made many test and this is the result:

-Alarm Manager save more battery than using handler+wakelock for long timing operation.

But you must use an additional wake lock to your activity/service started by the alarm, because the alarm manager wake lock doesn't cover it.

Even of this method uses two WakeLock the battery seems to be more efficient and with more life! During the tests (2days) the AlarmManager use 6 time less battery than other method. In my own case...

Hope this can help some one!

link|improve this answer
feedback

I suggest you to use AlarmManager to handle events with 1 hour interval.

Because we don't know exactly what you what to achieve we can't provide a more in deep answer/suggestion sorry.

link|improve this answer
"Almost everything you run every 1 minute" 60 MINUTE NOT SECONDS! Is true that i can use AlarmManager with phone sleeping without still using wakelock? – Lork Oct 6 '11 at 6:38
At the end you say: What is the best way to run a cycle each 60 seconds, without kill the battery? That got me confused... – BrainCrash Oct 6 '11 at 13:13
Now correct! So AlarmManager is better than Handler for this long timing operations? AlarmManager seems to use wakelock too – Lork Oct 6 '11 at 15:52
Yes, just use it with the RTC_WAKEUP. I don't think that wakelock is the issue here. – BrainCrash Oct 6 '11 at 17:04
OK, but if AlarmManager uses inside itself a wakelock (link to Android developer) and an handler timing method uses wakelock too, what's the difference for battery? – Lork Oct 6 '11 at 17:19
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.